From fc424612270afdd9e84ca546ef394e58c957f339 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Mon, 13 Jul 2026 10:52:18 +0000 Subject: [PATCH 1/7] added golden for montly population --- .../golden_data/golden_summary_report.csv | 3 + .../monthly_population_estimate/manifest.json | 3 +- .../monthly_population_estimate/preprocess.py | 1420 ++++++++--------- .../validation_config.json | 21 + 4 files changed, 736 insertions(+), 711 deletions(-) create mode 100644 scripts/us_census/pep/monthly_population_estimate/golden_data/golden_summary_report.csv create mode 100644 scripts/us_census/pep/monthly_population_estimate/validation_config.json diff --git a/scripts/us_census/pep/monthly_population_estimate/golden_data/golden_summary_report.csv b/scripts/us_census/pep/monthly_population_estimate/golden_data/golden_summary_report.csv new file mode 100644 index 0000000000..2e6f7d2d57 --- /dev/null +++ b/scripts/us_census/pep/monthly_population_estimate/golden_data/golden_summary_report.csv @@ -0,0 +1,3 @@ +"NumPlaces","StatVar","ScalingFactors","observationPeriods","Units","MeasurementMethods","MinDate" +"1","Count_Person_Civilian_NonInstitutionalized","[]","[P1M]","[]","[CensusPEPSurvey]","1990-04" +"1","Count_Person_ResidesInHousehold","[]","[P1M]","[]","[CensusPEPSurvey]","2010-04" diff --git a/scripts/us_census/pep/monthly_population_estimate/manifest.json b/scripts/us_census/pep/monthly_population_estimate/manifest.json index 9af9b870fc..f071df9cfd 100644 --- a/scripts/us_census/pep/monthly_population_estimate/manifest.json +++ b/scripts/us_census/pep/monthly_population_estimate/manifest.json @@ -19,7 +19,8 @@ "cleaned_csv": "output/USA_Population_Count.csv" } ], - "cron_schedule": "0 7 * * 6" + "cron_schedule": "0 7 * * 6", + "validation_config_file": "validation_config.json" } ] } \ No newline at end of file diff --git a/scripts/us_census/pep/monthly_population_estimate/preprocess.py b/scripts/us_census/pep/monthly_population_estimate/preprocess.py index 401dbbd3fe..50ba9fc209 100644 --- a/scripts/us_census/pep/monthly_population_estimate/preprocess.py +++ b/scripts/us_census/pep/monthly_population_estimate/preprocess.py @@ -1,710 +1,710 @@ -# Copyright 2022 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. -""" A Script to process USA Census PEP monthly population data - from the datasets in the provided local path. - Typical usage: - 1. python3 preprocess.py - 2. python3 preprocess.py -mode='download' - 3. python3 preprocess.py -mode='process' -""" -from dataclasses import replace -import os -import re -import warnings -import requests -import numpy as np -import time -import json -import sys -from datetime import datetime as dt - -warnings.filterwarnings('ignore') -import pandas as pd -from absl import app -from absl import flags -from absl import logging - -pd.set_option("display.max_columns", None) - -FLAGS = flags.FLAGS -flags.DEFINE_string('mode', '', 'Options: download or process') -_MODULE_DIR = os.path.dirname(os.path.abspath(__file__)) -_INPUT_FILE_PATH = os.path.join(_MODULE_DIR, 'input_files') -default_input_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), - "input_files") -flags.DEFINE_string("input_path", default_input_path, "Import Data File's List") -_HEADER = 1 -_SCALING_FACTOR_TXT_FILE = 1000 - -#Creating folder to store the raw data from source -raw_data_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), - "raw_data") -if not os.path.exists(raw_data_path): - os.mkdir(raw_data_path) - -_MCF_TEMPLATE = ("Node: dcid:{dcid}\n" - "typeOf: dcs:StatisticalVariable\n" - "populationType: dcs:Person\n" - "statType: dcs:measuredValue\n" - "measuredProperty: dcs:count\n" - "{xtra_pvs}\n") - -_TMCF_TEMPLATE = ("Node: E:USA_Population_Count->E{}\n" - "typeOf: dcs:StatVarObservation\n" - "variableMeasured: dcs:{}\n" - "measurementMethod: dcs:{}\n" - "observationAbout: C:USA_Population_Count->Location\n" - "observationDate: C:USA_Population_Count->Date\n" - "observationPeriod: \"P1M\"\n" - "value: C:USA_Population_Count->{}\n") - - -def _extract_year(val: str) -> tuple: - """ - This Methods returns true,year from the value contains year. - Otherwise false,'' - - Arguments: - val (str) : A string value contains data below format - yyyy or yyyy [1] or .MM 1 - Returns: - res (tuple) : Tuple with boolean value and year value or None - """ - # Extracting 0th index value from the val. - # val contains yyyy or yyyy [1] or .MM 1 - val = str(val).strip().split(' ', maxsplit=1)[0] - if val.isnumeric() and len(val) == 4: - return True, val - # Exceptional Case: val contains 20091 - # 2009 is year and 1 is Date. - # Extracting just year from above format - if val.isnumeric() and len(val) == 5: - return True, val[:4] - return False, None - - -def _return_year(col: str) -> str: - """ - This Methods returns year value if col contains year. - Otherwise pandas NA value. - - Arguments: - col (str) : A string value contains data below format - yyyy or yyyy [1] or .MM 1 - Returns: - res (str) : String value with year yyyy or pandas NA value - """ - res, out = _extract_year(col) - if res: - return out - return pd.NA - - -def _return_month(col: str) -> str: - """ - This Methods returns month and date value if col contains month, date. - Otherwise pandas NA value. - - Arguments: - col (str) : A string value contains data below format - yyyy or yyyy [1] or .MM 1 - Returns: - res (str) : String value with month mm or pandas NA value - """ - res = _extract_year(col) - if res[0]: - return pd.NA - return col - - -def _year_range(col: pd.Series) -> str: - """ - This method returns year range from the dataframe - column. - Example: - col(input): - 2000-04 - 2000-05 - 2000-06 - 2000-07 - 2000-08 - ... - 2010-08 - 2010-09 - 2010-10 - 2010-11 - 2010-12 - output: - "2010-2000" - - Arguments: - col (Series) : DataFrame Column of dtype str - - Returns: - year_range (str) : String of Concatenated max and min year values - """ - year_range = None - max_year = max(pd.to_datetime(col, errors='coerce').dt.year) - min_year = min(pd.to_datetime(col, errors='coerce').dt.year) - year_range = str(max_year) + '-' + str(min_year) - return year_range - - -def _replace_name(final_cols: list) -> list: - """ - List provided inorder to change the name as required by output. - - Arguments: - final_cols (list) : List of dtype str - - Returns: - final_cols (list) : List of dtype str - """ - final_cols = [ - "Count_Person_" + (col.replace("Population ", "").replace( - "Population", "").replace(" Plus ", "Or").replace( - "Armed Forces Overseas", "InUSArmedForcesOverseas").replace( - "Household", "ResidesInHousehold").replace( - "Resident", "USResident").replace( - "Noninstitutionalized", - "NonInstitutionalized").strip().replace( - " ", "_").replace("__", "_")) - for col in final_cols - ] - - return final_cols - - -class CensusUSACountryPopulation: - """ - CensusUSACountryPopulation class provides methods - to load the data into dataframes, process, cleans - dataframes and finally creates single cleaned csv - file. - Also provides methods to generate MCF and TMCF - Files using pre-defined templates. - """ - - def __init__(self, input_path: str, csv_file_path: str, mcf_file_path: str, - tmcf_file_path: str) -> None: - self.input_path = input_path #added - self._cleaned_csv_file_path = csv_file_path - self._mcf_file_path = mcf_file_path - self._tmcf_file_path = tmcf_file_path - self._df = None - self._file_name = None - self._scaling_factor = 1 - # Finding the Dir Path - if not os.path.exists(os.path.dirname(self._cleaned_csv_file_path)): - os.mkdir(os.path.dirname(self._cleaned_csv_file_path)) - - def _load_data(self, file: str) -> pd.DataFrame: - """ - This Methods loads the data into pandas Dataframe - using the provided file path and Returns the Dataframe. - - Arguments: - file (str) : String of Dataset File Path - Returns: - df (DataFrame) : DataFrame with loaded dataset - """ - df = None - self._file_name = os.path.basename(file) - if ".xls" in file: - df = pd.read_excel(file) - return df - - def _transform_df(self, df: pd.DataFrame, file: str) -> pd.DataFrame: - """ - This method transforms Dataframe into cleaned DF. - Also, It Creates new columns, remove duplicates, - Standaradize headers to SV's, Mulitply with - scaling factor. - - Arguments: - df (DataFrame) : DataFrame - - Returns: - df (DataFrame) : DataFrame. - """ - final_cols = [col for col in df.columns if 'year' not in col.lower()] - # _return_year("1999") or _return_year("1999 [1]"): 1999 - # _return_year(".07 1"): pd.NA - df['Year'] = df['Year and Month'].apply(_return_year).fillna( - method='ffill', limit=12) - # _return_year("1999") or _return_year("1999 [1]"): pd.NA - # _return_year(".07 1"): 07 - df['Month'] = df['Year and Month'].apply(_return_month) - df.dropna(subset=['Year', 'Month'], inplace=True) - - # Creating new Date Column and Final Date format is yyyy-mm - df['Date'] = df['Year'] + df['Month'] - df['Date'] = df['Date'].str.replace(".", "").str.replace( - " ", "").str.replace("*", "") - df['Date'] = pd.to_datetime(df['Date'], - format='%Y%B%d', - errors="coerce") - # dropping 2010, 2020 overlapping values from different files - # dropping < 2000 files having some text in the value column - - if 'nat-total.xlsx' in file: - df = df[df['Resident Population Plus Armed Forces Overseas'] != - 'with'] - if 'na-est2009-01.xlsx' in file: - df = df[df['Date'] < dt(2010, 4, 1)] - if 'na-est2019-01.xlsx' in file: - df = df[df['Date'] < dt(2020, 4, 1)] - df.dropna(subset=['Date'], inplace=True) - df['Date'] = df['Date'].dt.strftime('%Y-%m') - df.drop_duplicates(subset=['Date'], inplace=True) - - # Deriving new SV Count_Person_InArmedForcesOverseas as - # subtracting Resident Population from - # Resident Population Plus Armed Forces Overseas - df['Count_Person_InUSArmedForcesOverseas'] = df[ - 'Resident Population Plus Armed Forces Overseas'].astype( - 'int') - df['Resident Population'].astype('int') - computed_cols = ["Date", "Count_Person_InUSArmedForcesOverseas"] - - # Selecting Computed and Final Columns from the DF. - df = df[computed_cols + final_cols] - - # Renaming DF Headers with ref to SV's Naming Standards. - final_cols_list = _replace_name(final_cols) - - final_cols_list = computed_cols + final_cols_list - df.columns = final_cols_list - - # Creating Location column with default value country/USA. - # as the dataset is all about USA country level only. - df.insert(1, "Location", "country/USA", True) - df.insert(0, 'date_range', _year_range(df['Date']), True) - return df - - def _transform_data(self, df: pd.DataFrame, file: str) -> None: - """ - This method calls the required functions to transform - the dataframe and saves the final cleaned data in - CSV file format. - - Arguments: - df (DataFrame): Input DataFrame containing the raw data to be transformed. - - Returns: - bool: Returns True if the transformation and file saving are successful, - False if an error occurs during processing. - """ - - try: - df = self._transform_df(df, file) - - if self._df is None: - self._df = df - else: - self._df = pd.concat([self._df, df], ignore_index=True) - - self._df.sort_values(by=['Date', 'date_range'], - ascending=False, - inplace=True) - # Data for 2020 exists in two sources, causing overlap. We'll eliminate duplicates - self._df.drop_duplicates("Date", keep="last", inplace=True) - self._df.drop(['date_range'], axis=1, inplace=True) - float_col = self._df.select_dtypes(include=['float64']) - for col in float_col.columns.values: - try: - self._df[col] = self._df[col].astype('int64') - except: - pass - self._df.to_csv(self._cleaned_csv_file_path, index=False) - except Exception as e: - logging.fatal(f'Error when processing file:-{e}') - return True - - def _generate_mcf(self, df_cols: list) -> None: - """ - This method generates MCF file w.r.t - dataframe headers and defined MCF template - - Arguments: - df_cols (list) : List of DataFrame Columns - - Returns: - None - """ - try: - mcf_nodes = [] - for col in df_cols: - pvs = [] - residence = "" - status = "" - armedf = "" - if col.lower() in ["date", "location"]: - continue - if re.findall('Resident', col): - if re.findall('InUSArmedForcesOverseas', col): - status = "USResident__InUSArmedForcesOverseas" - else: - status = "USResident" - residence = "residentStatus: dcs:" + status - pvs.append(residence) - elif re.findall('ArmedForces', col): - residence = "residentStatus: dcs:" + "InUSArmedForcesOverseas" - pvs.append(residence) - if re.findall('Resides', col): - if re.findall('Household', col): - residence = "residenceType: dcs:" + "Household" - pvs.append(residence) - if re.findall('Civilian', col): - armedf = "armedForcesStatus: dcs:Civilian" - pvs.append(armedf) - if re.findall('NonInstitutionalized', col): - residence = ("institutionalization: dcs:" + - "USC_NonInstitutionalized") - pvs.append(residence) - if re.findall('Count_Person_InUSArmedForcesOverseas', col): - armedf = "armedForcesStatus: dcs:InArmedForces" - pvs.append(armedf) - node = _MCF_TEMPLATE.format(dcid=col, xtra_pvs='\n'.join(pvs)) - mcf_nodes.append(node) - - mcf = '\n'.join(mcf_nodes) - - # Writing Genereated MCF to local path. - with open(self._mcf_file_path, 'w+', encoding='utf-8') as f_out: - f_out.write(mcf.rstrip('\n')) - except Exception as e: - logging.fatal(f'Error when Generating MCF file:-{e}') - - def _generate_tmcf(self, df_cols: list) -> None: - """ - This method generates TMCF file w.r.t - dataframe headers and defined TMCF template - - Arguments: - df_cols (list) : List of DataFrame Columns - - Returns: - None - """ - - i = 0 - measure = "" - tmcf = "" - for col in df_cols: - if col.lower() in ["date", "location"]: - continue - if re.findall('Count_Person_InUSArmedForcesOverseas', col): - measure = "dcAggregate/CensusPEPSurvey" - else: - measure = "CensusPEPSurvey" - tmcf = tmcf + _TMCF_TEMPLATE.format(i, col, measure, col) + "\n" - i = i + 1 - - # Writing Genereated TMCF to local path. - with open(self._tmcf_file_path, 'w+', encoding='utf-8') as f_out: - f_out.write(tmcf.rstrip('\n')) - - def process(self): - """ - This is main method to iterate on each file, - calls defined methods to clean, generate final - cleaned CSV file, MCF file and TMCF file. - """ - #input_path = FLAGS.input_path - ip_files = os.listdir(self.input_path) - self.input_files = [ - self.input_path + os.sep + file for file in ip_files - ] - if len(self.input_files) == 0: - logging.info("No files to process") - return - processed_count = 0 - total_files_to_process = len(self.input_files) - logging.info(f"No of files to be processed {len(self.input_files)}") - for file in self.input_files: - logging.info(f"Processing file: {file}") - df = self._load_data(file) - result = self._transform_data(df, file) - if result: - processed_count += 1 - else: - logging.fatal(f'Failed to process {file}') - logging.info(f"No of files processed {processed_count}") - if total_files_to_process > 0 & (processed_count - == total_files_to_process): - self._generate_mcf(self._df.columns) - self._generate_tmcf(self._df.columns) - else: - logging.fatal( - "Aborting output files as no of files to process not matching processed files" - ) - - -def add_future_year_urls(): - """ - This method scans the download URLs for future years. - """ - global _FILES_TO_DOWNLOAD - with open(os.path.join(_MODULE_DIR, 'input_url.json'), 'r') as inpit_file: - _FILES_TO_DOWNLOAD = json.load(inpit_file) - urls_to_scan = [ - "https://www2.census.gov/programs-surveys/popest/tables/2020-{YEAR}/national/totals/NA-EST{YEAR}-POP.xlsx" - ] - # This method checks for URLs from 2030 down to 2021. If a valid URL is found for any year, the method stops and adds it to the download URL. - # - for url in urls_to_scan: - for future_year in range(2030, 2021, -1): - YEAR = future_year - - url_to_check = url.format(YEAR=YEAR) - try: - check_url = requests.head(url_to_check) - if check_url.status_code == 200: - _FILES_TO_DOWNLOAD.append({"download_path": url_to_check}) - break - - except: - logging.error(f"URL is not accessable {url_to_check}") - - -def _clean_csv_file(df: pd.DataFrame) -> pd.DataFrame: - """ - This method cleans the dataframe loaded from a csv file format. - Also, Performs transformations on the data. - - Args: - df (DataFrame) : DataFrame of csv dataset - - Returns: - df (DataFrame) : Transformed DataFrame for txt dataset. - """ - # Removal of file description and headers in the initial lines of the input - # - # Input Data: - # table with row headers in column A and column headers in rows 3 through 5 (leading dots indicate sub-parts) - # Table 1. Monthly Population Estimates for the United States: April 1, 2000 to December 1, 2010 - # Year and Month Resident Population Resident Population Plus Armed Forces Overseas Civilian Population Civilian Noninstitutionalized Population - # 2000 - # .April 1 28,14,24,602 28,16,52,670 28,02,00,922 27,61,62,490 - # .May 1 28,16,46,806 28,18,76,634 28,04,28,534 27,63,89,920 - # - # Output Data: - # (Made Headers) Year and Month Resident Population Resident Population Plus Armed Forces Overseas Civilian Population Civilian Noninstitutionalized Population - # 2000 - # .April 1 28,14,24,602 28,16,52,670 28,02,00,922 27,61,62,490 - # .May 1 28,16,46,806 28,18,76,634 28,04,28,534 27,63,89,920 - - idx = df[df[0] == "Year and Month"].index - df = df.iloc[idx.values[0] + 1:][:] - df = df.dropna(axis=1, how='all') - cols = [ - "Year and Month", "Resident Population", - "Resident Population Plus Armed Forces Overseas", "Civilian Population", - "Civilian NonInstitutionalized Population" - ] - df.columns = cols - for col in df.columns: - df[col] = df[col].str.replace(",", "") - return df - - -def _clean_txt_file(df: pd.DataFrame) -> pd.DataFrame: - """ - This method cleans the dataframe loaded from a txt file format. - Also, Performs transformations on the data. - - Arguments: - df (DataFrame): DataFrame representing the loaded TXT dataset. - - Returns: - DataFrame: Transformed DataFrame after cleaning operations. - """ - df['Year and Month'] = df[['Year and Month', 'Date']]\ - .apply(_concat_cols, axis=1) - df.drop(columns=['Date'], inplace=True) - for col in df.columns: - df[col] = df[col].str.replace(",", "") - - # The index numbers alotted as per where the columns are present to - # move the columns left - resident_population = 1 - resident_population_plus_armed_forces_overseas = 2 - civilian_population = 3 - civilian_noninstitutionalized_population = 4 - # Moving the row data left upto one index value. - # As the text file has (census) mentioned in some rows and it makes the - # other column's data shift by one place, we need to shift it back to the - # original place. - idx = df[df['Resident Population'] == "(census)"].index - df.iloc[idx, resident_population] = df.iloc[idx][ - "Resident Population Plus Armed Forces Overseas"] - df.iloc[idx, resident_population_plus_armed_forces_overseas] = df.iloc[idx][ - "Civilian Population"] - df.iloc[idx, civilian_population] = df.iloc[idx][ - "Civilian NonInstitutionalized Population"] - df.iloc[idx, civilian_noninstitutionalized_population] = np.nan - return df - - -def _mulitply_scaling_factor(col: pd.Series) -> pd.Series: - """ - This method multiply dataframe column with scaling factor. - - Arguments: - col (Series): A DataFrame column of dtype int, containing the values to be scaled. - - Returns: - Series: A DataFrame column with values multiplied by the scaling factor. - """ - res = col - if col not in [None, np.nan]: - if col.isdigit(): - res = int(col) * _SCALING_FACTOR_TXT_FILE - return res - - -def _concat_cols(col: pd.Series) -> pd.Series: - """ - This method concats two DataFrame column values - with space in-between. - - Args: - col (Series): A pandas Series containing two values from the DataFrame. - - Returns: - res (Series) : Concatenated DataFrame Columns - """ - res = col[0] - if col[1] is None: - return res - res = col[0] + ' ' + col[1] - return res - - -def download_files(): - """ - This method allows to download the input files. - """ - global _FILES_TO_DOWNLOAD - session = requests.session() - max_retry = 5 - for file_to_dowload in _FILES_TO_DOWNLOAD: - file_name = None - url = file_to_dowload['download_path'] - if 'file_name' in file_to_dowload and len( - file_to_dowload['file_name'] > 5): - file_name = file_to_dowload['file_name'] - else: - file_name = url.split('/')[-1] - retry_number = 0 - - is_file_downloaded = False - while is_file_downloaded == False: - try: - df = None - file_name = url.split("/")[-1] - - if ".xls" in url: - df = pd.read_excel(url, header=_HEADER) - df.to_excel(os.path.join(raw_data_path, file_name), - index=False, - header=False, - engine='xlsxwriter') - df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), - index=False, - header=False, - engine='xlsxwriter') - elif ".csv" in url: - with requests.get(url, stream=True) as response: - response.raise_for_status() - if response.status_code == 200: - with open(os.path.join(raw_data_path, file_name), - 'wb') as f: - f.write(response.content) - file_name = file_name.replace(".csv", ".xlsx") - df = pd.read_csv(url, header=None) - df = _clean_csv_file(df) - df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), - index=False, - engine='xlsxwriter') - elif ".txt" in url: - with requests.get(url, stream=True) as response: - response.raise_for_status() - if response.status_code == 200: - with open(os.path.join(raw_data_path, file_name), - 'wb') as f: - f.write(response.content) - file_name = file_name.replace(".txt", ".xlsx") - cols = [ - "Year and Month", "Date", "Resident Population", - "Resident Population Plus Armed Forces Overseas", - "Civilian Population", - "Civilian NonInstitutionalized Population" - ] - df = pd.read_table(url, - index_col=False, - delim_whitespace=True, - engine='python', - skiprows=17, - names=cols) - # Skipping 17 rows as the initial 17 rows contains the information about - # the file being used, heading files spread accross multiple lines and - # other irrelevant information like source/contact details. - df = _clean_txt_file(df) - # Multiplying the data with scaling factor 1000. - for col in df.columns: - if "year" not in col.lower(): - df[col] = df[col].apply(_mulitply_scaling_factor) - df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), - index=False, - engine='xlsxwriter') - - is_file_downloaded = True - logging.info(f"Downloaded file : {url}") - - except Exception as e: - logging.error(f"Retry file download {url} - {e}") - time.sleep(5) - retry_number += 1 - if retry_number > max_retry: - logging.fatal(f"Error downloading {url}") - logging.error("Exit from script") - sys.exit(1) - return True - - -def main(_): - mode = FLAGS.mode - # Defining Output file names - output_path = os.path.join(_MODULE_DIR, "output") - input_path = os.path.join(_MODULE_DIR, "input_files") - if not os.path.exists(input_path): - os.mkdir(input_path) - if not os.path.exists(output_path): - os.mkdir(output_path) - cleaned_csv_path = os.path.join(output_path, "USA_Population_Count.csv") - mcf_path = os.path.join(output_path, "USA_Population_Count.mcf") - tmcf_path = os.path.join(output_path, "USA_Population_Count.tmcf") - download_status = True - if mode == "" or mode == "download": - add_future_year_urls() - download_status = download_files() - if download_status and (mode == "" or mode == "process"): - loader = CensusUSACountryPopulation(FLAGS.input_path, cleaned_csv_path, - mcf_path, tmcf_path) - loader.process() - - -if __name__ == "__main__": - app.run(main) +# Copyright 2022 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. +""" A Script to process USA Census PEP monthly population data + from the datasets in the provided local path. + Typical usage: + 1. python3 preprocess.py + 2. python3 preprocess.py -mode='download' + 3. python3 preprocess.py -mode='process' +""" +from dataclasses import replace +import os +import re +import warnings +import requests +import numpy as np +import time +import json +import sys +from datetime import datetime as dt + +warnings.filterwarnings('ignore') +import pandas as pd +from absl import app +from absl import flags +from absl import logging + +pd.set_option("display.max_columns", None) + +FLAGS = flags.FLAGS +flags.DEFINE_string('mode', '', 'Options: download or process') +_MODULE_DIR = os.path.dirname(os.path.abspath(__file__)) +_INPUT_FILE_PATH = os.path.join(_MODULE_DIR, 'input_files') +default_input_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), + "input_files") +flags.DEFINE_string("input_path", default_input_path, "Import Data File's List") +_HEADER = 1 +_SCALING_FACTOR_TXT_FILE = 1000 + +#Creating folder to store the raw data from source +raw_data_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), + "raw_data") +if not os.path.exists(raw_data_path): + os.mkdir(raw_data_path) + +_MCF_TEMPLATE = ("Node: dcid:{dcid}\n" + "typeOf: dcs:StatisticalVariable\n" + "populationType: dcs:Person\n" + "statType: dcs:measuredValue\n" + "measuredProperty: dcs:count\n" + "{xtra_pvs}\n") + +_TMCF_TEMPLATE = ("Node: E:USA_Population_Count->E{}\n" + "typeOf: dcs:StatVarObservation\n" + "variableMeasured: dcs:{}\n" + "measurementMethod: dcs:{}\n" + "observationAbout: C:USA_Population_Count->Location\n" + "observationDate: C:USA_Population_Count->Date\n" + "observationPeriod: \"P1M\"\n" + "value: C:USA_Population_Count->{}\n") + + +def _extract_year(val: str) -> tuple: + """ + This Methods returns true,year from the value contains year. + Otherwise false,'' + + Arguments: + val (str) : A string value contains data below format + yyyy or yyyy [1] or .MM 1 + Returns: + res (tuple) : Tuple with boolean value and year value or None + """ + # Extracting 0th index value from the val. + # val contains yyyy or yyyy [1] or .MM 1 + val = str(val).strip().split(' ', maxsplit=1)[0] + if val.isnumeric() and len(val) == 4: + return True, val + # Exceptional Case: val contains 20091 + # 2009 is year and 1 is Date. + # Extracting just year from above format + if val.isnumeric() and len(val) == 5: + return True, val[:4] + return False, None + + +def _return_year(col: str) -> str: + """ + This Methods returns year value if col contains year. + Otherwise pandas NA value. + + Arguments: + col (str) : A string value contains data below format + yyyy or yyyy [1] or .MM 1 + Returns: + res (str) : String value with year yyyy or pandas NA value + """ + res, out = _extract_year(col) + if res: + return out + return pd.NA + + +def _return_month(col: str) -> str: + """ + This Methods returns month and date value if col contains month, date. + Otherwise pandas NA value. + + Arguments: + col (str) : A string value contains data below format + yyyy or yyyy [1] or .MM 1 + Returns: + res (str) : String value with month mm or pandas NA value + """ + res = _extract_year(col) + if res[0]: + return pd.NA + return col + + +def _year_range(col: pd.Series) -> str: + """ + This method returns year range from the dataframe + column. + Example: + col(input): + 2000-04 + 2000-05 + 2000-06 + 2000-07 + 2000-08 + ... + 2010-08 + 2010-09 + 2010-10 + 2010-11 + 2010-12 + output: + "2010-2000" + + Arguments: + col (Series) : DataFrame Column of dtype str + + Returns: + year_range (str) : String of Concatenated max and min year values + """ + year_range = None + max_year = max(pd.to_datetime(col, errors='coerce').dt.year) + min_year = min(pd.to_datetime(col, errors='coerce').dt.year) + year_range = str(max_year) + '-' + str(min_year) + return year_range + + +def _replace_name(final_cols: list) -> list: + """ + List provided inorder to change the name as required by output. + + Arguments: + final_cols (list) : List of dtype str + + Returns: + final_cols (list) : List of dtype str + """ + final_cols = [ + "Count_Person_" + (col.replace("Population ", "").replace( + "Population", "").replace(" Plus ", "Or").replace( + "Armed Forces Overseas", "InUSArmedForcesOverseas").replace( + "Household", "ResidesInHousehold").replace( + "Resident", "USResident").replace( + "Noninstitutionalized", + "NonInstitutionalized").strip().replace( + " ", "_").replace("__", "_")) + for col in final_cols + ] + + return final_cols + + +class CensusUSACountryPopulation: + """ + CensusUSACountryPopulation class provides methods + to load the data into dataframes, process, cleans + dataframes and finally creates single cleaned csv + file. + Also provides methods to generate MCF and TMCF + Files using pre-defined templates. + """ + + def __init__(self, input_path: str, csv_file_path: str, mcf_file_path: str, + tmcf_file_path: str) -> None: + self.input_path = input_path #added + self._cleaned_csv_file_path = csv_file_path + self._mcf_file_path = mcf_file_path + self._tmcf_file_path = tmcf_file_path + self._df = None + self._file_name = None + self._scaling_factor = 1 + # Finding the Dir Path + if not os.path.exists(os.path.dirname(self._cleaned_csv_file_path)): + os.mkdir(os.path.dirname(self._cleaned_csv_file_path)) + + def _load_data(self, file: str) -> pd.DataFrame: + """ + This Methods loads the data into pandas Dataframe + using the provided file path and Returns the Dataframe. + + Arguments: + file (str) : String of Dataset File Path + Returns: + df (DataFrame) : DataFrame with loaded dataset + """ + df = None + self._file_name = os.path.basename(file) + if ".xls" in file: + df = pd.read_excel(file) + return df + + def _transform_df(self, df: pd.DataFrame, file: str) -> pd.DataFrame: + """ + This method transforms Dataframe into cleaned DF. + Also, It Creates new columns, remove duplicates, + Standaradize headers to SV's, Mulitply with + scaling factor. + + Arguments: + df (DataFrame) : DataFrame + + Returns: + df (DataFrame) : DataFrame. + """ + final_cols = [col for col in df.columns if 'year' not in col.lower()] + # _return_year("1999") or _return_year("1999 [1]"): 1999 + # _return_year(".07 1"): pd.NA + df['Year'] = df['Year and Month'].apply(_return_year).fillna( + method='ffill', limit=12) + # _return_year("1999") or _return_year("1999 [1]"): pd.NA + # _return_year(".07 1"): 07 + df['Month'] = df['Year and Month'].apply(_return_month) + df.dropna(subset=['Year', 'Month'], inplace=True) + + # Creating new Date Column and Final Date format is yyyy-mm + df['Date'] = df['Year'] + df['Month'] + df['Date'] = df['Date'].str.replace(".", "").str.replace( + " ", "").str.replace("*", "") + df['Date'] = pd.to_datetime(df['Date'], + format='%Y%B%d', + errors="coerce") + # dropping 2010, 2020 overlapping values from different files + # dropping < 2000 files having some text in the value column + + if 'nat-total.xlsx' in file: + df = df[df['Resident Population Plus Armed Forces Overseas'] != + 'with'] + if 'na-est2009-01.xlsx' in file: + df = df[df['Date'] < dt(2010, 4, 1)] + if 'na-est2019-01.xlsx' in file: + df = df[df['Date'] < dt(2020, 4, 1)] + df.dropna(subset=['Date'], inplace=True) + df['Date'] = df['Date'].dt.strftime('%Y-%m') + df.drop_duplicates(subset=['Date'], inplace=True) + + # Deriving new SV Count_Person_InArmedForcesOverseas as + # subtracting Resident Population from + # Resident Population Plus Armed Forces Overseas + df['Count_Person_InUSArmedForcesOverseas'] = df[ + 'Resident Population Plus Armed Forces Overseas'].astype( + 'int') - df['Resident Population'].astype('int') + computed_cols = ["Date", "Count_Person_InUSArmedForcesOverseas"] + + # Selecting Computed and Final Columns from the DF. + df = df[computed_cols + final_cols] + + # Renaming DF Headers with ref to SV's Naming Standards. + final_cols_list = _replace_name(final_cols) + + final_cols_list = computed_cols + final_cols_list + df.columns = final_cols_list + + # Creating Location column with default value country/USA. + # as the dataset is all about USA country level only. + df.insert(1, "Location", "country/USA", True) + df.insert(0, 'date_range', _year_range(df['Date']), True) + return df + + def _transform_data(self, df: pd.DataFrame, file: str) -> None: + """ + This method calls the required functions to transform + the dataframe and saves the final cleaned data in + CSV file format. + + Arguments: + df (DataFrame): Input DataFrame containing the raw data to be transformed. + + Returns: + bool: Returns True if the transformation and file saving are successful, + False if an error occurs during processing. + """ + + try: + df = self._transform_df(df, file) + + if self._df is None: + self._df = df + else: + self._df = pd.concat([self._df, df], ignore_index=True) + + self._df.sort_values(by=['Date', 'date_range'], + ascending=False, + inplace=True) + # Data for 2020 exists in two sources, causing overlap. We'll eliminate duplicates + self._df.drop_duplicates("Date", keep="last", inplace=True) + self._df.drop(['date_range'], axis=1, inplace=True) + float_col = self._df.select_dtypes(include=['float64']) + for col in float_col.columns.values: + try: + self._df[col] = self._df[col].astype('int64') + except: + pass + self._df.to_csv(self._cleaned_csv_file_path, index=False) + except Exception as e: + logging.fatal(f'Error when processing file:-{e}') + return True + + def _generate_mcf(self, df_cols: list) -> None: + """ + This method generates MCF file w.r.t + dataframe headers and defined MCF template + + Arguments: + df_cols (list) : List of DataFrame Columns + + Returns: + None + """ + try: + mcf_nodes = [] + for col in df_cols: + pvs = [] + residence = "" + status = "" + armedf = "" + if col.lower() in ["date", "location"]: + continue + if re.findall('Resident', col): + if re.findall('InUSArmedForcesOverseas', col): + status = "USResident__InUSArmedForcesOverseas" + else: + status = "USResident" + residence = "residentStatus: dcs:" + status + pvs.append(residence) + elif re.findall('ArmedForces', col): + residence = "residentStatus: dcs:" + "InUSArmedForcesOverseas" + pvs.append(residence) + if re.findall('Resides', col): + if re.findall('Household', col): + residence = "residenceType: dcs:" + "Household" + pvs.append(residence) + if re.findall('Civilian', col): + armedf = "armedForcesStatus: dcs:Civilian" + pvs.append(armedf) + if re.findall('NonInstitutionalized', col): + residence = ("institutionalization: dcs:" + + "USC_NonInstitutionalized") + pvs.append(residence) + if re.findall('Count_Person_InUSArmedForcesOverseas', col): + armedf = "armedForcesStatus: dcs:InArmedForces" + pvs.append(armedf) + node = _MCF_TEMPLATE.format(dcid=col, xtra_pvs='\n'.join(pvs)) + mcf_nodes.append(node) + + mcf = '\n'.join(mcf_nodes) + + # Writing Genereated MCF to local path. + with open(self._mcf_file_path, 'w+', encoding='utf-8') as f_out: + f_out.write(mcf.rstrip('\n')) + except Exception as e: + logging.fatal(f'Error when Generating MCF file:-{e}') + + def _generate_tmcf(self, df_cols: list) -> None: + """ + This method generates TMCF file w.r.t + dataframe headers and defined TMCF template + + Arguments: + df_cols (list) : List of DataFrame Columns + + Returns: + None + """ + + i = 0 + measure = "" + tmcf = "" + for col in df_cols: + if col.lower() in ["date", "location"]: + continue + if re.findall('Count_Person_InUSArmedForcesOverseas', col): + measure = "dcAggregate/CensusPEPSurvey" + else: + measure = "CensusPEPSurvey" + tmcf = tmcf + _TMCF_TEMPLATE.format(i, col, measure, col) + "\n" + i = i + 1 + + # Writing Genereated TMCF to local path. + with open(self._tmcf_file_path, 'w+', encoding='utf-8') as f_out: + f_out.write(tmcf.rstrip('\n')) + + def process(self): + """ + This is main method to iterate on each file, + calls defined methods to clean, generate final + cleaned CSV file, MCF file and TMCF file. + """ + #input_path = FLAGS.input_path + ip_files = os.listdir(self.input_path) + self.input_files = [ + self.input_path + os.sep + file for file in ip_files + ] + if len(self.input_files) == 0: + logging.info("No files to process") + return + processed_count = 0 + total_files_to_process = len(self.input_files) + logging.info(f"No of files to be processed {len(self.input_files)}") + for file in self.input_files: + logging.info(f"Processing file: {file}") + df = self._load_data(file) + result = self._transform_data(df, file) + if result: + processed_count += 1 + else: + logging.fatal(f'Failed to process {file}') + logging.info(f"No of files processed {processed_count}") + if total_files_to_process > 0 & (processed_count + == total_files_to_process): + self._generate_mcf(self._df.columns) + self._generate_tmcf(self._df.columns) + else: + logging.fatal( + "Aborting output files as no of files to process not matching processed files" + ) + + +def add_future_year_urls(): + """ + This method scans the download URLs for future years. + """ + global _FILES_TO_DOWNLOAD + with open(os.path.join(_MODULE_DIR, 'input_url.json'), 'r') as inpit_file: + _FILES_TO_DOWNLOAD = json.load(inpit_file) + urls_to_scan = [ + "https://www2.census.gov/programs-surveys/popest/tables/2020-{YEAR}/national/totals/NA-EST{YEAR}-POP.xlsx" + ] + # This method checks for URLs from 2030 down to 2021. If a valid URL is found for any year, the method stops and adds it to the download URL. + # + for url in urls_to_scan: + for future_year in range(2030, 2021, -1): + YEAR = future_year + + url_to_check = url.format(YEAR=YEAR) + try: + check_url = requests.head(url_to_check) + if check_url.status_code == 200: + _FILES_TO_DOWNLOAD.append({"download_path": url_to_check}) + break + + except: + logging.error(f"URL is not accessable {url_to_check}") + + +def _clean_csv_file(df: pd.DataFrame) -> pd.DataFrame: + """ + This method cleans the dataframe loaded from a csv file format. + Also, Performs transformations on the data. + + Args: + df (DataFrame) : DataFrame of csv dataset + + Returns: + df (DataFrame) : Transformed DataFrame for txt dataset. + """ + # Removal of file description and headers in the initial lines of the input + # + # Input Data: + # table with row headers in column A and column headers in rows 3 through 5 (leading dots indicate sub-parts) + # Table 1. Monthly Population Estimates for the United States: April 1, 2000 to December 1, 2010 + # Year and Month Resident Population Resident Population Plus Armed Forces Overseas Civilian Population Civilian Noninstitutionalized Population + # 2000 + # .April 1 28,14,24,602 28,16,52,670 28,02,00,922 27,61,62,490 + # .May 1 28,16,46,806 28,18,76,634 28,04,28,534 27,63,89,920 + # + # Output Data: + # (Made Headers) Year and Month Resident Population Resident Population Plus Armed Forces Overseas Civilian Population Civilian Noninstitutionalized Population + # 2000 + # .April 1 28,14,24,602 28,16,52,670 28,02,00,922 27,61,62,490 + # .May 1 28,16,46,806 28,18,76,634 28,04,28,534 27,63,89,920 + + idx = df[df[0] == "Year and Month"].index + df = df.iloc[idx.values[0] + 1:][:] + df = df.dropna(axis=1, how='all') + cols = [ + "Year and Month", "Resident Population", + "Resident Population Plus Armed Forces Overseas", "Civilian Population", + "Civilian NonInstitutionalized Population" + ] + df.columns = cols + for col in df.columns: + df[col] = df[col].str.replace(",", "") + return df + + +def _clean_txt_file(df: pd.DataFrame) -> pd.DataFrame: + """ + This method cleans the dataframe loaded from a txt file format. + Also, Performs transformations on the data. + + Arguments: + df (DataFrame): DataFrame representing the loaded TXT dataset. + + Returns: + DataFrame: Transformed DataFrame after cleaning operations. + """ + df['Year and Month'] = df[['Year and Month', 'Date']]\ + .apply(_concat_cols, axis=1) + df.drop(columns=['Date'], inplace=True) + for col in df.columns: + df[col] = df[col].str.replace(",", "") + + # The index numbers alotted as per where the columns are present to + # move the columns left + resident_population = 1 + resident_population_plus_armed_forces_overseas = 2 + civilian_population = 3 + civilian_noninstitutionalized_population = 4 + # Moving the row data left upto one index value. + # As the text file has (census) mentioned in some rows and it makes the + # other column's data shift by one place, we need to shift it back to the + # original place. + idx = df[df['Resident Population'] == "(census)"].index + df.iloc[idx, resident_population] = df.iloc[idx][ + "Resident Population Plus Armed Forces Overseas"] + df.iloc[idx, resident_population_plus_armed_forces_overseas] = df.iloc[idx][ + "Civilian Population"] + df.iloc[idx, civilian_population] = df.iloc[idx][ + "Civilian NonInstitutionalized Population"] + df.iloc[idx, civilian_noninstitutionalized_population] = np.nan + return df + + +def _mulitply_scaling_factor(col: pd.Series) -> pd.Series: + """ + This method multiply dataframe column with scaling factor. + + Arguments: + col (Series): A DataFrame column of dtype int, containing the values to be scaled. + + Returns: + Series: A DataFrame column with values multiplied by the scaling factor. + """ + res = col + if col not in [None, np.nan]: + if col.isdigit(): + res = int(col) * _SCALING_FACTOR_TXT_FILE + return res + + +def _concat_cols(col: pd.Series) -> pd.Series: + """ + This method concats two DataFrame column values + with space in-between. + + Args: + col (Series): A pandas Series containing two values from the DataFrame. + + Returns: + res (Series) : Concatenated DataFrame Columns + """ + res = col[0] + if col[1] is None: + return res + res = col[0] + ' ' + col[1] + return res + + +def download_files(): + """ + This method allows to download the input files. + """ + global _FILES_TO_DOWNLOAD + session = requests.session() + max_retry = 5 + for file_to_dowload in _FILES_TO_DOWNLOAD: + file_name = None + url = file_to_dowload['download_path'] + if 'file_name' in file_to_dowload and len( + file_to_dowload['file_name'] > 5): + file_name = file_to_dowload['file_name'] + else: + file_name = url.split('/')[-1] + retry_number = 0 + + is_file_downloaded = False + while is_file_downloaded == False: + try: + df = None + file_name = url.split("/")[-1] + + if ".xls" in url: + df = pd.read_excel(url, header=_HEADER) + df.to_excel(os.path.join(raw_data_path, file_name), + index=False, + header=False, + engine='xlsxwriter') + df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), + index=False, + header=False, + engine='xlsxwriter') + elif ".csv" in url: + with requests.get(url, stream=True) as response: + response.raise_for_status() + if response.status_code == 200: + with open(os.path.join(raw_data_path, file_name), + 'wb') as f: + f.write(response.content) + file_name = file_name.replace(".csv", ".xlsx") + df = pd.read_csv(url, header=None) + df = _clean_csv_file(df) + df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), + index=False, + engine='xlsxwriter') + elif ".txt" in url: + with requests.get(url, stream=True) as response: + response.raise_for_status() + if response.status_code == 200: + with open(os.path.join(raw_data_path, file_name), + 'wb') as f: + f.write(response.content) + file_name = file_name.replace(".txt", ".xlsx") + cols = [ + "Year and Month", "Date", "Resident Population", + "Resident Population Plus Armed Forces Overseas", + "Civilian Population", + "Civilian NonInstitutionalized Population" + ] + df = pd.read_table(url, + index_col=False, + sep=r'\s+', + engine='python', + skiprows=17, + names=cols) + # Skipping 17 rows as the initial 17 rows contains the information about + # the file being used, heading files spread accross multiple lines and + # other irrelevant information like source/contact details. + df = _clean_txt_file(df) + # Multiplying the data with scaling factor 1000. + for col in df.columns: + if "year" not in col.lower(): + df[col] = df[col].apply(_mulitply_scaling_factor) + df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), + index=False, + engine='xlsxwriter') + + is_file_downloaded = True + logging.info(f"Downloaded file : {url}") + + except Exception as e: + logging.error(f"Retry file download {url} - {e}") + time.sleep(5) + retry_number += 1 + if retry_number > max_retry: + logging.fatal(f"Error downloading {url}") + logging.error("Exit from script") + sys.exit(1) + return True + + +def main(_): + mode = FLAGS.mode + # Defining Output file names + output_path = os.path.join(_MODULE_DIR, "output") + input_path = os.path.join(_MODULE_DIR, "input_files") + if not os.path.exists(input_path): + os.mkdir(input_path) + if not os.path.exists(output_path): + os.mkdir(output_path) + cleaned_csv_path = os.path.join(output_path, "USA_Population_Count.csv") + mcf_path = os.path.join(output_path, "USA_Population_Count.mcf") + tmcf_path = os.path.join(output_path, "USA_Population_Count.tmcf") + download_status = True + if mode == "" or mode == "download": + add_future_year_urls() + download_status = download_files() + if download_status and (mode == "" or mode == "process"): + loader = CensusUSACountryPopulation(FLAGS.input_path, cleaned_csv_path, + mcf_path, tmcf_path) + loader.process() + + +if __name__ == "__main__": + app.run(main) diff --git a/scripts/us_census/pep/monthly_population_estimate/validation_config.json b/scripts/us_census/pep/monthly_population_estimate/validation_config.json new file mode 100644 index 0000000000..e3f52fbeeb --- /dev/null +++ b/scripts/us_census/pep/monthly_population_estimate/validation_config.json @@ -0,0 +1,21 @@ +{ + "schema_version": "1.0", + "rules": [ + { + "rule_id": "check_deleted_records_percent", + "description": "Checks that the percentage of deleted points is within the threshold.", + "validator": "DELETED_RECORDS_PERCENT", + "params": { + "threshold": 0.1 + } + }, + { + "rule_id": "check_goldens_summary_report", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report.csv" + } + } + ] +} + From 89417d73ba6b83a727a47b4b7e46f30183087580 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Mon, 13 Jul 2026 11:22:49 +0000 Subject: [PATCH 2/7] added golden for us_pep_sex --- .../us_census/pep/us_pep_sex/manifest.json | 3 +- .../output/new_rec_gen_sa/report.json | 66 + .../output/new_rec_gen_sa/summary_report.csv | 3 + .../output/new_rec_gen_sa/summary_report.html | 487 ++++ ...able_mcf_nodes_population_estimate_sex.mcf | 2442 +++++++++++++++++ .../output/population_estimate_sex.csv | 223 ++ .../output/population_estimate_sex.mcf | 13 + .../output/population_estimate_sex.tmcf | 8 + scripts/us_census/pep/us_pep_sex/process.py | 99 +- .../pep/us_pep_sex/validation_config.json | 22 + 10 files changed, 3325 insertions(+), 41 deletions(-) create mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json create mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv create mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html create mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf create mode 100644 scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv create mode 100644 scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf create mode 100644 scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf create mode 100644 scripts/us_census/pep/us_pep_sex/validation_config.json diff --git a/scripts/us_census/pep/us_pep_sex/manifest.json b/scripts/us_census/pep/us_pep_sex/manifest.json index 4744566d3f..57568dcd5a 100644 --- a/scripts/us_census/pep/us_pep_sex/manifest.json +++ b/scripts/us_census/pep/us_pep_sex/manifest.json @@ -19,7 +19,8 @@ "cleaned_csv": "output/population_estimate_sex.csv" } ], - "cron_schedule": "0 03 * * 1" + "cron_schedule": "0 03 * * 1", + "validation_config_file": "validation_config.json" } ] } \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json new file mode 100644 index 0000000000..25038870d8 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json @@ -0,0 +1,66 @@ +{ + "levelSummary": { + "LEVEL_INFO": { + "counters": { + "NumRowSuccesses": "222", + "NumPVSuccesses": "1998", + "Existence_NumChecks": "2220", + "NumNodeSuccesses": "222", + "Existence_NumDcCalls": "1" + } + }, + "LEVEL_WARNING": { + "counters": { + "StatsCheck_Data_Holes": "2" + } + } + }, + "statsCheckSummary": [{ + "placeDcid": "country/USA", + "statVarDcid": "Count_Person_Female", + "measurementMethod": "dcAggregate/CensusPEPSurvey_PartialAggregate", + "observationPeriod": "P1Y", + "scalingFactor": "", + "unit": "", + "validationCounters": [{ + "counterKey": "StatsCheck_Data_Holes", + "additionalDetails": "Possible data hole found. Dates in this series: 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020" + }] + }, { + "placeDcid": "country/USA", + "statVarDcid": "Count_Person_Male", + "measurementMethod": "dcAggregate/CensusPEPSurvey_PartialAggregate", + "observationPeriod": "P1Y", + "scalingFactor": "", + "unit": "", + "validationCounters": [{ + "counterKey": "StatsCheck_Data_Holes", + "additionalDetails": "Possible data hole found. Dates in this series: 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020" + }] + }], + "commandArgs": { + "existenceChecks": true, + "resolution": "RESOLUTION_MODE_LOCAL", + "numThreads": 1, + "statChecks": true, + "observationAbout": true, + "allowNanSvobs": false, + "checkMeasurementResult": false, + "coordinatesResolution": false, + "includeRuntimeMetadata": true, + "inputFiles": ["population_estimate_sex.tmcf", "population_estimate_sex.csv"], + "delimiter": "," + }, + "runtimeMetadata": { + "startTimeMillis": "1783925730493", + "endTimeMillis": "1783925732456", + "username": "niveditasing", + "hostname": "nivedita.c.googlers.com", + "osName": "Linux", + "osVersion": "6.18.14-1rodete3-amd64", + "javaVersion": "26.0.1", + "toolVersion": "0.1", + "toolBuildTimestamp": "2025-08-15T04:10:36+0000", + "toolGitCommitHash": "baee738" + } +} \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv new file mode 100644 index 0000000000..ffdf60e444 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv @@ -0,0 +1,3 @@ +StatVar,NumPlaces,NumObservations,MinValue,MaxValue,NumObservationsDates,MinDate,MaxDate,MeasurementMethods,Units,ScalingFactors,observationPeriods +Count_Person_Female,1,111,3.7227E7,1.67227921E8,111,1900,2020,[dcAggregate/CensusPEPSurvey_PartialAggregate],[],[],[P1Y] +Count_Person_Male,1,111,3.8867E7,1.62256202E8,111,1900,2020,[dcAggregate/CensusPEPSurvey_PartialAggregate],[],[],[P1Y] diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html new file mode 100644 index 0000000000..a6ba135007 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html @@ -0,0 +1,487 @@ + + + Summary Report + + + + + + + + + + +
+ Go to Top +
+

Summary Report

+

Table of Contents

+ + + + +
+

+ Import Run Details +

+ +

Runtime Information

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Report Generated AtJul 13, 2026
Generation Duration1.963 seconds
Generated Byniveditasing
Hostnivedita.c.googlers.com
Operating SystemLinux 6.18.14-1rodete3-amd64
Java Version26.0.1
Tool Version0.1
Tool Git Commit Hashbaee738
Tool Build Time2025-08-15T04:10:36+0000
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Existence Checks Enabledyes
Resolution ModeRESOLUTION_MODE_LOCAL
Num Threads1
Stat Checks Enabledyes
Sample Places Entered
Input Files +
population_estimate_sex.tmcf
+
population_estimate_sex.csv
+
CSV Delimiter,
+
+ + +
+

+ Counters +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Counter NameNum Occurences
LEVEL_INFO
NumRowSuccesses222
NumPVSuccesses1,998
Existence_NumChecks2,220
NumNodeSuccesses222
Existence_NumDcCalls1
LEVEL_WARNING
StatsCheck_Data_Holes2
+
+ +
+

+ StatVarObservations by StatVar +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StatVarNum PlacesNum ObservationsMin ValueMax ValueNum Observation DatesMin DateMax DateMeasurement MethodsUnitsScaling FactorsObservation Periods
Count_Person_Female111137,227,000167,227,92111119002020 +
dcAggregate/CensusPEPSurvey_PartialAggregate
+
+
+
+
+
+
P1Y
+
Count_Person_Male111138,867,000162,256,20211119002020 +
dcAggregate/CensusPEPSurvey_PartialAggregate
+
+
+
+
+
+
P1Y
+
+
+
+

+ Series Summaries for Sample Places +

+ +
+ United States (country/USA) + Open this place (country/USA) in Data Commons browser. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StatVarNum ObservationsDatesCorresponding ValuesMeasurement MethodUnitScaling FactorObservation PeriodTime Series Chart
Count_Person_Female1111900 | 1901 | 1902 | 1903 | 1904 | 1905 | 1906 | 1907 | 1908 | 1909 | 1910 | 1911 | 1912 | 1913 | 1914 | 1915 | 1916 | 1917 | 1918 | 1919 | 1920 | 1921 | 1922 | 1923 | 1924 | 1925 | 1926 | 1927 | 1928 | 1929 | 1930 | 1931 | 1932 | 1933 | 1934 | 1935 | 1936 | 1937 | 1938 | 1939 | 1940 | 1941 | 1942 | 1943 | 1944 | 1945 | 1946 | 1947 | 1948 | 1949 | 1950 | 1951 | 1952 | 1953 | 1954 | 1955 | 1956 | 1957 | 1958 | 1959 | 1960 | 1961 | 1962 | 1963 | 1964 | 1965 | 1966 | 1967 | 1968 | 1969 | 1970 | 1971 | 1972 | 1973 | 1974 | 1975 | 1976 | 1977 | 1978 | 1979 | 1990 | 1991 | 1992 | 1993 | 1994 | 1995 | 1996 | 1997 | 1998 | 1999 | 2000 | 2001 | 2002 | 2003 | 2004 | 2005 | 2006 | 2007 | 2008 | 2009 | 2010 | 2011 | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | 2018 | 2019 | 202037227000 | 37935000 | 38680000 | 39370000 | 40077000 | 40857000 | 41609000 | 42326000 | 43116000 | 43945000 | 44853000 | 45573000 | 46310000 | 47268000 | 48228000 | 48973000 | 49727000 | 50480000 | 51234000 | 51411000 | 52170000 | 53246000 | 54163000 | 55086000 | 56124000 | 57016000 | 57809000 | 58638000 | 59408000 | 60087000 | 60780224 | 61314145 | 61770334 | 62194754 | 62647577 | 63140344 | 63593797 | 64035032 | 64589578 | 65166379 | 65770083 | 66482338 | 67262824 | 68193612 | 69019626 | 69893092 | 70757395 | 72180179 | 73501618 | 74852695 | 76422405 | 77776626 | 79180550 | 80569882 | 82053150 | 83567564 | 85123526 | 86735704 | 88276799 | 89834194 | 91351647 | 92951562 | 94471618 | 95938865 | 97371039 | 98694462 | 99940627 | 101148174 | 102279795 | 103390000 | 104698298 | 106093671 | 107305289 | 108402337 | 109462818 | 110607234 | 111726560 | 112904877 | 114160965 | 115471526 | 127969673 | 129623972 | 131314217 | 132989513 | 134566414 | 136097660 | 137621440 | 139209099 | 140759913 | 142272592 | 143719004 | 145077463 | 146394634 | 147679036 | 148977286 | 150319521 | 151732647 | 153166353 | 154604015 | 155964075 | 157249665 | 158370501 | 159480635 | 160545893 | 161690519 | 162832151 | 163986062 | 165008683 | 165877686 | 166637617 | 167227921 +
dcAggregate/CensusPEPSurvey_PartialAggregate
+
+
+
+
+
+
P1Y
+
+ + + +19001910192019301940195019601970198019902000201020204E76E78E71E81.2E81.4E81.6E8
Count_Person_Male1111900 | 1901 | 1902 | 1903 | 1904 | 1905 | 1906 | 1907 | 1908 | 1909 | 1910 | 1911 | 1912 | 1913 | 1914 | 1915 | 1916 | 1917 | 1918 | 1919 | 1920 | 1921 | 1922 | 1923 | 1924 | 1925 | 1926 | 1927 | 1928 | 1929 | 1930 | 1931 | 1932 | 1933 | 1934 | 1935 | 1936 | 1937 | 1938 | 1939 | 1940 | 1941 | 1942 | 1943 | 1944 | 1945 | 1946 | 1947 | 1948 | 1949 | 1950 | 1951 | 1952 | 1953 | 1954 | 1955 | 1956 | 1957 | 1958 | 1959 | 1960 | 1961 | 1962 | 1963 | 1964 | 1965 | 1966 | 1967 | 1968 | 1969 | 1970 | 1971 | 1972 | 1973 | 1974 | 1975 | 1976 | 1977 | 1978 | 1979 | 1990 | 1991 | 1992 | 1993 | 1994 | 1995 | 1996 | 1997 | 1998 | 1999 | 2000 | 2001 | 2002 | 2003 | 2004 | 2005 | 2006 | 2007 | 2008 | 2009 | 2010 | 2011 | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | 2018 | 2019 | 202038867000 | 39649000 | 40483000 | 41262000 | 42089000 | 42965000 | 43841000 | 44682000 | 45594000 | 46545000 | 47554000 | 48290000 | 49025000 | 49957000 | 50883000 | 51573000 | 52234000 | 52788000 | 51974000 | 53103000 | 54291000 | 55292000 | 55886000 | 56861000 | 57985000 | 58813000 | 59588000 | 60397000 | 61101000 | 61680000 | 62296517 | 62725503 | 63070137 | 63384009 | 63726196 | 64109888 | 64459383 | 64789797 | 65235361 | 65713339 | 66352363 | 66920133 | 67596729 | 68545741 | 69377719 | 70035073 | 70631171 | 71945892 | 73129684 | 74335435 | 75849012 | 77101263 | 78372190 | 79614310 | 80972704 | 82363638 | 83779505 | 85248426 | 86605105 | 87995434 | 89319511 | 90739919 | 92066119 | 93302933 | 94517752 | 95608501 | 96619711 | 97563882 | 98426257 | 99286946 | 100353876 | 101567006 | 102590732 | 103506451 | 104391110 | 105365965 | 106308604 | 107334548 | 108423580 | 109583961 | 122162221 | 123868531 | 125579972 | 127265839 | 128869259 | 130459431 | 132045951 | 133702661 | 135355375 | 137022121 | 138443407 | 139891492 | 141230559 | 142428897 | 143828012 | 145197078 | 146647265 | 148064854 | 149489951 | 150807454 | 152077478 | 153212980 | 154397027 | 155514054 | 156695810 | 157906843 | 159085693 | 160113445 | 160960513 | 161692336 | 162256202 +
dcAggregate/CensusPEPSurvey_PartialAggregate
+
+
+
+
+
+
P1Y
+
+ + + +19001910192019301940195019601970198019902000201020204E76E78E71E81.2E81.4E81.6E8
+
+
+ + + + \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf new file mode 100644 index 0000000000..f6535818dd --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf @@ -0,0 +1,2442 @@ +Node: population_estimate_sex/E0/736604b9-4425-bb7d-c788-9a8fde278f50 +observationDate: 1900 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 38867000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1900value=38867000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/gbwsvx3cq28nc" + +Node: population_estimate_sex/E0/95478b8e-9b15-7ea1-d9ac-a461fec317dd +observationDate: 1901 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 39649000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1901value=39649000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/23s5qjbflpzhc" + +Node: population_estimate_sex/E0/4938d26d-30e7-3bc3-2d73-6f183ce77e67 +observationDate: 1902 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 40483000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1902value=40483000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/y171j1c07xec1" + +Node: population_estimate_sex/E0/f7546b99-2ac9-998a-d369-59bd6c32ad62 +observationDate: 1903 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 41262000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1903value=41262000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/0jznt229e9ev1" + +Node: population_estimate_sex/E0/c38e7315-334b-2e47-34dd-9360aa44c6e2 +observationDate: 1904 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 42089000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1904value=42089000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/k1hfddv2endtg" + +Node: population_estimate_sex/E0/7bdea8d8-96ec-9ce0-f5d3-2df21ed03af3 +observationDate: 1905 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 42965000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1905value=42965000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rdmj3w5d5y9vg" + +Node: population_estimate_sex/E0/6e836869-4e42-02e4-87b4-fbf38b39e623 +observationDate: 1906 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 43841000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1906value=43841000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/5gthkyp4x8343" + +Node: population_estimate_sex/E0/514e3066-5151-cfa7-0776-52b47550ebf7 +observationDate: 1907 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 44682000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1907value=44682000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/y9etrcn2ed1f5" + +Node: population_estimate_sex/E0/f9e603d4-cc76-5ee3-c32c-3f8aaad3d0f3 +observationDate: 1908 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 45594000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1908value=45594000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ne2r3vd58se51" + +Node: population_estimate_sex/E0/338f8ab2-78f7-8a43-78c6-14ebecd2e109 +observationDate: 1909 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 46545000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1909value=46545000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/1x109c87vx19c" + +Node: population_estimate_sex/E0/f8232015-c89f-e96f-3648-38d85e7446b7 +observationDate: 1910 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 47554000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1910value=47554000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/8p48bgf9kspr6" + +Node: population_estimate_sex/E0/33d47208-1db0-3dcc-3c77-f459ddcb3663 +observationDate: 1911 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 48290000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1911value=48290000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/bez1zg3j84yff" + +Node: population_estimate_sex/E0/780d868e-233c-61c4-52e2-cb8a5a7c1c38 +observationDate: 1912 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 49025000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1912value=49025000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rlcenmsygsme4" + +Node: population_estimate_sex/E0/1b116854-34e1-09c9-7a5b-2c86a4e5fbd5 +observationDate: 1913 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 49957000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1913value=49957000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/q12r1jnfd1myc" + +Node: population_estimate_sex/E0/0023a201-b5eb-ce29-e754-9c343038006e +observationDate: 1914 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 50883000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1914value=50883000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/yze1et1zlp3j4" + +Node: population_estimate_sex/E0/a0e20d63-1b09-e638-2bd7-1e0777228de0 +observationDate: 1915 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 51573000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1915value=51573000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9yrccgk7befg6" + +Node: population_estimate_sex/E0/b7bb5768-d615-e914-6e1d-102208791e93 +observationDate: 1916 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 52234000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1916value=52234000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/l6g57s7m68ewh" + +Node: population_estimate_sex/E0/94b433d4-ad26-0982-5685-4e91519ca311 +observationDate: 1917 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 52788000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1917value=52788000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mb7x5xhqmrrbh" + +Node: population_estimate_sex/E0/9b2ef32a-ffd9-2769-21a8-62261903481f +observationDate: 1918 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 51974000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1918value=51974000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/cfhgnzkkb93j5" + +Node: population_estimate_sex/E0/33d0d769-dc77-8466-59f2-0076dce15cd6 +observationDate: 1919 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 53103000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1919value=53103000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/bct70kr4lggf3" + +Node: population_estimate_sex/E0/4869a928-e627-9227-0a96-3a31fa155797 +observationDate: 1920 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 54291000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1920value=54291000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9zb3vns1gvrn" + +Node: population_estimate_sex/E0/fa17abdd-4b9f-44dd-1347-923928290351 +observationDate: 1921 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 55292000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1921value=55292000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ncyt7hwr120j6" + +Node: population_estimate_sex/E0/0318dee9-92a9-ff81-7508-ed6b6c8a05f0 +observationDate: 1922 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 55886000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1922value=55886000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/3f3hw9x9191s1" + +Node: population_estimate_sex/E0/0a91bd92-c917-4700-c427-5f23fff4d4a6 +observationDate: 1923 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 56861000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1923value=56861000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mrmf30m8twqzg" + +Node: population_estimate_sex/E0/655aeb58-004c-7050-984c-95c7b453465d +observationDate: 1924 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 57985000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1924value=57985000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mfthfrpcpbw24" + +Node: population_estimate_sex/E0/3d7f3249-5d62-e572-dd8a-cd4ec5511973 +observationDate: 1925 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 58813000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1925value=58813000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/l4eey234yfq8f" + +Node: population_estimate_sex/E0/4df76fbe-9c33-6d17-66d1-a1d1bc836f9f +observationDate: 1926 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 59588000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1926value=59588000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/151rxl9t70l43" + +Node: population_estimate_sex/E0/2521bd74-c1ef-b0be-a40d-9b4b84ab265a +observationDate: 1927 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 60397000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1927value=60397000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/h5lmsl6l9npdb" + +Node: population_estimate_sex/E0/d2d903b4-8aee-6948-fb67-e65e484fda90 +observationDate: 1928 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 61101000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1928value=61101000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/2p2mjq5k0xx45" + +Node: population_estimate_sex/E0/06d17688-9033-7556-865c-319f4d87078b +observationDate: 1929 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 61680000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1929value=61680000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mctnjdzv163s7" + +Node: population_estimate_sex/E0/82d26a55-2ca5-e8e6-5a3c-e19c8934c4f7 +observationDate: 1930 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 62296517 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1930value=62296517observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/56mg4mxdpbxtg" + +Node: population_estimate_sex/E0/85085113-2f4d-021e-c11d-6893d9ed4b0e +observationDate: 1931 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 62725503 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1931value=62725503observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ew3e189dczgy8" + +Node: population_estimate_sex/E0/ad5cd01a-55ff-ba59-175e-dfd69082058a +observationDate: 1932 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 63070137 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1932value=63070137observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/l1dwyq7zjv5w9" + +Node: population_estimate_sex/E0/f2a30a2d-0896-dbb3-c9df-a4395596914c +observationDate: 1933 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 63384009 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1933value=63384009observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/3rmvjz4302js2" + +Node: population_estimate_sex/E0/b97dde59-ec5e-7d82-9f60-7f1e1139a93b +observationDate: 1934 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 63726196 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1934value=63726196observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/t3v0jcr858t0b" + +Node: population_estimate_sex/E0/3de59e3c-dc3f-f6b1-4bf6-eb4f1ba7e6eb +observationDate: 1935 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 64109888 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1935value=64109888observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/qcdzp9503b8xc" + +Node: population_estimate_sex/E0/4b70dd8d-4fdd-4303-d832-aaf713748be2 +observationDate: 1936 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 64459383 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1936value=64459383observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/80z4vemghqy17" + +Node: population_estimate_sex/E0/062846a5-f33b-9ed0-ad34-d4199d977f95 +observationDate: 1937 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 64789797 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1937value=64789797observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/g08k5g3q4y416" + +Node: population_estimate_sex/E0/09784003-c19e-9704-ee00-b63a5664e8c4 +observationDate: 1938 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 65235361 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1938value=65235361observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/y7zqreqnvq5jg" + +Node: population_estimate_sex/E0/600c5fb4-c8a0-8c10-34d1-37541071f34b +observationDate: 1939 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 65713339 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1939value=65713339observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/qvc2lvmhet38b" + +Node: population_estimate_sex/E0/a4decf16-0639-b2ba-0177-089c19c71a02 +observationDate: 1940 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 66352363 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1940value=66352363observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hkw3558k5xed5" + +Node: population_estimate_sex/E0/7a8d975c-1b84-e599-3861-85cd9b2c0beb +observationDate: 1941 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 66920133 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1941value=66920133observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hnv9s192hwz5f" + +Node: population_estimate_sex/E0/bd66a898-644e-c801-08e6-da303380a437 +observationDate: 1942 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 67596729 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1942value=67596729observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/cv9h9bs5jfq73" + +Node: population_estimate_sex/E0/64294a5a-7d01-9352-7ac3-11aa068cabd8 +observationDate: 1943 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 68545741 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1943value=68545741observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/4fcj1rx2s8466" + +Node: population_estimate_sex/E0/86debe35-624a-8486-d596-18151698a81f +observationDate: 1944 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 69377719 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1944value=69377719observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/3qfm6xjew52gg" + +Node: population_estimate_sex/E0/3240599e-8346-397f-f516-1183c86699e7 +observationDate: 1945 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 70035073 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1945value=70035073observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/j4dvqvl1r30jd" + +Node: population_estimate_sex/E0/17463a08-ad17-ff1a-cac8-d416c202a383 +observationDate: 1946 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 70631171 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1946value=70631171observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/14l31n5xg2bd2" + +Node: population_estimate_sex/E0/12368817-bf5a-c9ba-caf7-d14b36c9c453 +observationDate: 1947 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 71945892 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1947value=71945892observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/zmhmnl214w3jf" + +Node: population_estimate_sex/E0/2cfac78d-8269-2252-c725-d45e30bd46e1 +observationDate: 1948 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 73129684 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1948value=73129684observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/98lfjqh3fvzt1" + +Node: population_estimate_sex/E0/fcd64f24-3b6c-28db-4718-0e8c39fc3644 +observationDate: 1949 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 74335435 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1949value=74335435observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/zmvz2s0q5d7l6" + +Node: population_estimate_sex/E0/01fc28bf-ae5f-9bf9-74c6-fbbdf93951a5 +observationDate: 1950 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 75849012 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1950value=75849012observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/5rx0c9s2x6bzb" + +Node: population_estimate_sex/E0/22825662-ac62-41db-98cd-14fe3cd16a10 +observationDate: 1951 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 77101263 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1951value=77101263observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/b4prprzhqdse9" + +Node: population_estimate_sex/E0/8f69a8df-1bc8-4fd8-0f40-42f6fc61221e +observationDate: 1952 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 78372190 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1952value=78372190observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/8m9vvexy8ezwb" + +Node: population_estimate_sex/E0/8019d492-8643-7c05-a0f2-2a12a9a53655 +observationDate: 1953 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 79614310 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1953value=79614310observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hens90tpps3v5" + +Node: population_estimate_sex/E0/3e81af09-1cf9-deef-c351-253215e38503 +observationDate: 1954 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 80972704 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1954value=80972704observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/67brmewe7f0vf" + +Node: population_estimate_sex/E0/6e92e716-b07d-93b2-850c-3725f32578b1 +observationDate: 1955 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 82363638 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1955value=82363638observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/dp27yv00xgheh" + +Node: population_estimate_sex/E0/251e0d90-dde0-c5b7-7f9a-0a05b4f007a1 +observationDate: 1956 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 83779505 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1956value=83779505observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/66s734jrebm64" + +Node: population_estimate_sex/E0/99052cbf-2433-b855-cb20-881585037039 +observationDate: 1957 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 85248426 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1957value=85248426observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/1htrd73g6q616" + +Node: population_estimate_sex/E0/f7b91fbe-7548-6c44-1a91-afb156e6224f +observationDate: 1958 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 86605105 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1958value=86605105observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/kjlxfb8zfzl9b" + +Node: population_estimate_sex/E0/8729a75d-ea76-9b2a-f1ac-210422c670ae +observationDate: 1959 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 87995434 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1959value=87995434observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/t4nr3lqv47fx6" + +Node: population_estimate_sex/E0/ca0981c2-6dcc-1bd5-baae-d9858d40bb56 +observationDate: 1960 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 89319511 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1960value=89319511observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hm2npdlc28wr9" + +Node: population_estimate_sex/E0/da95d007-cbaf-0c28-e6ac-21fff43d3b79 +observationDate: 1961 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 90739919 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1961value=90739919observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/b8l22jj7mhk2f" + +Node: population_estimate_sex/E0/606dc605-e939-8708-57c7-4eff34924ee6 +observationDate: 1962 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 92066119 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1962value=92066119observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/p0lehlxwf364c" + +Node: population_estimate_sex/E0/cdbad43b-1846-c0d9-1885-62825015d298 +observationDate: 1963 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 93302933 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1963value=93302933observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/f8c4k5p2vy546" + +Node: population_estimate_sex/E0/c292b84e-d162-abc5-d9be-c0cc11b0ed39 +observationDate: 1964 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 94517752 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1964value=94517752observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/bxmflv452v904" + +Node: population_estimate_sex/E0/8cfe837c-fa8d-7324-e953-cba908ff66fc +observationDate: 1965 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 95608501 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1965value=95608501observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/b9h62m4n9jv66" + +Node: population_estimate_sex/E0/9c1be884-fc20-8557-1aea-0614414e6f7a +observationDate: 1966 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 96619711 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1966value=96619711observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/489zwdql07jjg" + +Node: population_estimate_sex/E0/90d6868d-0317-9e09-cfb0-cc81e1c3ce3e +observationDate: 1967 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 97563882 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1967value=97563882observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/dnp8xxn3p9g5h" + +Node: population_estimate_sex/E0/1a76d992-2723-d6af-0661-4cf685122dbe +observationDate: 1968 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 98426257 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1968value=98426257observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/zngld9w955vc6" + +Node: population_estimate_sex/E0/72c4fea0-b6e6-5937-bcad-a7e1d659d953 +observationDate: 1969 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 99286946 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1969value=99286946observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/88h525y65dxj7" + +Node: population_estimate_sex/E0/74cb2f2a-7999-416f-5412-dbaa2dd05dde +observationDate: 1970 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 100353876 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1970value=100353876observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/5mgpj11hw9ppc" + +Node: population_estimate_sex/E0/62d1bb31-6e9b-eccb-c3ba-b98c08821aa6 +observationDate: 1971 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 101567006 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1971value=101567006observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/fmhcmvkjzrzr6" + +Node: population_estimate_sex/E0/4c5a0d47-22f8-0794-e937-b511b2b1ba30 +observationDate: 1972 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 102590732 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1972value=102590732observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ln0lq9nt6jdd" + +Node: population_estimate_sex/E0/ee0a70b6-aa5c-e74c-5daa-64feb6b5c2ee +observationDate: 1973 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 103506451 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1973value=103506451observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/v9t7hr8xmz5j3" + +Node: population_estimate_sex/E0/39869871-a357-f0d8-9531-6f81ea84ed9c +observationDate: 1974 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 104391110 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1974value=104391110observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/jxd4l79dkgrq2" + +Node: population_estimate_sex/E0/6f1975d6-1031-02d4-eed3-7c5db1e7dc07 +observationDate: 1975 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 105365965 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1975value=105365965observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/lwpnqk5xdng12" + +Node: population_estimate_sex/E0/61b43097-9dc4-4182-2930-16963666dce0 +observationDate: 1976 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 106308604 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1976value=106308604observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/6z4k4w95pdlk9" + +Node: population_estimate_sex/E0/a0ca2065-4607-6be4-51c9-dd79c5a79fa7 +observationDate: 1977 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 107334548 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1977value=107334548observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/24d7exjd1epd5" + +Node: population_estimate_sex/E0/b3a94174-d318-f987-7e2b-747649c658ab +observationDate: 1978 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 108423580 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1978value=108423580observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/yw621p57zr9f8" + +Node: population_estimate_sex/E0/e86d8953-2015-2483-59ca-9f7102937888 +observationDate: 1979 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 109583961 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1979value=109583961observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9pg0q6dhdbeg2" + +Node: population_estimate_sex/E0/0d5f34d9-b44f-f116-52c9-b6eb9d88dd83 +observationDate: 1990 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 122162221 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1990value=122162221observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/y5q8wsg4yv28h" + +Node: population_estimate_sex/E0/23885a08-63ab-8eb5-548c-73e443e99cee +observationDate: 1991 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 123868531 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1991value=123868531observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/8nx98jgfb5fjh" + +Node: population_estimate_sex/E0/22969c6a-2b55-ce2d-3e64-5dd3bf9b47a1 +observationDate: 1992 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 125579972 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1992value=125579972observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/k8724d4krhz3d" + +Node: population_estimate_sex/E0/db34101d-37ce-5d74-5497-4b25bfccffea +observationDate: 1993 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 127265839 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1993value=127265839observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/00tr6mvyk8yg5" + +Node: population_estimate_sex/E0/0f6026be-c409-3da1-19ed-4c2125bff412 +observationDate: 1994 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 128869259 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1994value=128869259observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rjhkxdd2my2xc" + +Node: population_estimate_sex/E0/a65fe1d9-530a-c1de-ccb8-999770b17e33 +observationDate: 1995 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 130459431 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1995value=130459431observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/qwnqq0xdfb51" + +Node: population_estimate_sex/E0/61574ef7-c8ef-bcb8-2fd2-98d3d56fc104 +observationDate: 1996 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 132045951 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1996value=132045951observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ld1dej0l4qz45" + +Node: population_estimate_sex/E0/9cd45e10-1093-b8db-0202-d409616475db +observationDate: 1997 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 133702661 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1997value=133702661observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/gwzkzjdq5f9d6" + +Node: population_estimate_sex/E0/d3a028df-cafb-bd34-39cf-df9ea1b8b108 +observationDate: 1998 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 135355375 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1998value=135355375observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hywry53mwter1" + +Node: population_estimate_sex/E0/f8b3b43f-9592-e30a-0c26-85f04c8d0173 +observationDate: 1999 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 137022121 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1999value=137022121observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/x4mb9jfe0t5pg" + +Node: population_estimate_sex/E0/738a631f-27e2-dfd7-0ee1-990049660aee +observationDate: 2000 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 138443407 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2000value=138443407observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/tcwcv1lbdzdk9" + +Node: population_estimate_sex/E0/be666a54-5c28-49d1-f9fa-4f7af62c8ebe +observationDate: 2001 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 139891492 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2001value=139891492observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/whktyd603b2b1" + +Node: population_estimate_sex/E0/540556cc-75ae-1d56-2304-950c830cae7d +observationDate: 2002 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 141230559 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2002value=141230559observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/te04kfkrfknp2" + +Node: population_estimate_sex/E0/6a657fa2-395e-c928-315a-4155b25d381d +observationDate: 2003 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 142428897 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2003value=142428897observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/lghhhbqpx0v7f" + +Node: population_estimate_sex/E0/5a424b6c-cb03-1768-bf2e-0a2d0f4db56b +observationDate: 2004 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 143828012 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2004value=143828012observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/eqvxf5h6ew1k8" + +Node: population_estimate_sex/E0/7eccdb3e-79fe-665a-593e-2becbfa53241 +observationDate: 2005 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 145197078 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2005value=145197078observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/pn4ry0th7p0e3" + +Node: population_estimate_sex/E0/b003a9ad-8808-b2df-7e1f-49578ba7bb44 +observationDate: 2006 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 146647265 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2006value=146647265observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/e0wj7y0c1mvb1" + +Node: population_estimate_sex/E0/1ce93fd2-6b0d-f872-4880-3099b0e11da7 +observationDate: 2007 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 148064854 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2007value=148064854observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/q6envnxsvrhn4" + +Node: population_estimate_sex/E0/53a9e986-e58f-0fb7-1d11-e773d5ee33ab +observationDate: 2008 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 149489951 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2008value=149489951observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/4jqtrfd4539jd" + +Node: population_estimate_sex/E0/d07d2241-cfec-f9ba-1bb8-48834565185a +observationDate: 2009 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 150807454 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2009value=150807454observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mty0wqy67lch7" + +Node: population_estimate_sex/E0/e16e2c84-2368-6b37-c683-010a9f81b31b +observationDate: 2010 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 152077478 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2010value=152077478observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hyst2yvqq9vc3" + +Node: population_estimate_sex/E0/1ec4a5c3-bb63-4e16-f637-80aed0e22031 +observationDate: 2011 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 153212980 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2011value=153212980observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/qdv9ypzrmf335" + +Node: population_estimate_sex/E0/34522a00-faa8-29de-1cc2-849561cde764 +observationDate: 2012 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 154397027 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2012value=154397027observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/7ly8kd7vnmbv8" + +Node: population_estimate_sex/E0/8f1637de-49a2-82a2-cf2e-0751aa6a33b4 +observationDate: 2013 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 155514054 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2013value=155514054observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/t1qe78ztesq14" + +Node: population_estimate_sex/E0/dd25aa5e-542c-8f00-acf9-776b36a65f23 +observationDate: 2014 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 156695810 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2014value=156695810observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/fmr683p0jvsh4" + +Node: population_estimate_sex/E0/77f41236-cf11-1d90-da5c-76c234919c67 +observationDate: 2015 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 157906843 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2015value=157906843observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/5h40cr497vvrg" + +Node: population_estimate_sex/E0/1b5bf9ab-295c-69cb-f9f4-189d9960f0c4 +observationDate: 2016 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 159085693 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2016value=159085693observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/shv82m8k46zk7" + +Node: population_estimate_sex/E0/e3e3df93-2d3a-3264-bd6f-2a0c92450fed +observationDate: 2017 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 160113445 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2017value=160113445observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9q55cnrkqy0rc" + +Node: population_estimate_sex/E0/3a050ffc-a02f-4365-9233-a386fbcf0c6b +observationDate: 2018 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 160960513 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2018value=160960513observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/xbcg3f7e8tb16" + +Node: population_estimate_sex/E0/995ca758-ff45-7203-5d39-086eae7917b0 +observationDate: 2019 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 161692336 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2019value=161692336observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/88kmqq2prpz37" + +Node: population_estimate_sex/E0/4f552d13-7ab8-5cbf-768f-f7df36d069e0 +observationDate: 2020 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 162256202 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2020value=162256202observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/0bg96jykxe2k" + +Node: population_estimate_sex/E0/7c071083-0450-04f3-385a-79717437cb5a +observationDate: 1900 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 37227000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1900value=37227000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/m6887g7fczsgb" + +Node: population_estimate_sex/E0/992b3bfe-9bba-7874-9ec0-18184044104e +observationDate: 1901 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 37935000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1901value=37935000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9qle434ze6xp9" + +Node: population_estimate_sex/E0/a05d1833-7d77-9509-79ae-0d1f7fb4205b +observationDate: 1902 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 38680000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1902value=38680000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/7l9x789rkpthc" + +Node: population_estimate_sex/E0/e523484e-eeba-74f1-ef12-de24b23fe442 +observationDate: 1903 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 39370000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1903value=39370000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ch9l5j23h7538" + +Node: population_estimate_sex/E0/b3674e1b-4df1-6add-bac0-9e026304128f +observationDate: 1904 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 40077000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1904value=40077000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/g2qn1p4wxdczc" + +Node: population_estimate_sex/E0/fac62ce1-84b1-0174-1213-c7144f5caf1f +observationDate: 1905 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 40857000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1905value=40857000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/nxnkqz63dvry" + +Node: population_estimate_sex/E0/f473bc5a-7379-8a3e-eb31-fb1bd2103765 +observationDate: 1906 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 41609000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1906value=41609000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/j9c5275synpfb" + +Node: population_estimate_sex/E0/9af77098-e000-a2f5-89bb-ac0cb5cc4ab7 +observationDate: 1907 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 42326000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1907value=42326000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rmzykz6nrlbs5" + +Node: population_estimate_sex/E0/1ccfa267-94f5-2234-61fa-face27d84125 +observationDate: 1908 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 43116000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1908value=43116000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/7l849x6c5zw8" + +Node: population_estimate_sex/E0/e25bfebf-8af5-e08d-b343-ad735f497423 +observationDate: 1909 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 43945000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1909value=43945000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hed8x3m855p03" + +Node: population_estimate_sex/E0/4dad3f61-1218-8a44-b927-5c4091b34c80 +observationDate: 1910 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 44853000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1910value=44853000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/smbvzkm11mv25" + +Node: population_estimate_sex/E0/914cdda6-ce03-c981-84d2-02830933b1f4 +observationDate: 1911 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 45573000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1911value=45573000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/kd3xj4n0b6ry" + +Node: population_estimate_sex/E0/026ffa47-b4a1-ec85-1c7a-9d044a158b81 +observationDate: 1912 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 46310000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1912value=46310000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9148s6ed6kss5" + +Node: population_estimate_sex/E0/be47a97a-d1a6-6f0e-8d28-daf9d4b29e72 +observationDate: 1913 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 47268000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1913value=47268000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/zs1gvhs9wr4mg" + +Node: population_estimate_sex/E0/8d3947af-f9e4-cb71-0573-3efb1c0a9d73 +observationDate: 1914 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 48228000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1914value=48228000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/xne6z1n38lfe1" + +Node: population_estimate_sex/E0/b2db9ce2-415a-df4c-288a-042ada0da245 +observationDate: 1915 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 48973000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1915value=48973000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/80zmqjdb0thv9" + +Node: population_estimate_sex/E0/654f1eb5-27f5-234c-b72b-02350c644ff0 +observationDate: 1916 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 49727000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1916value=49727000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/bkjw4j222y8fg" + +Node: population_estimate_sex/E0/ceed1e77-e87d-ddc4-81b7-bdcf1e44ebe5 +observationDate: 1917 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 50480000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1917value=50480000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mymh73cjz8eld" + +Node: population_estimate_sex/E0/49cb733b-c84f-da69-f4bf-47369447cc31 +observationDate: 1918 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 51234000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1918value=51234000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ethwsj962nzr4" + +Node: population_estimate_sex/E0/c034d7af-f2f9-ed83-8783-b932e120b9fe +observationDate: 1919 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 51411000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1919value=51411000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/t0djyrwf09xlb" + +Node: population_estimate_sex/E0/be260719-116a-283c-4e7e-3f7d13bfa407 +observationDate: 1920 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 52170000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1920value=52170000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/j4xzchxq7lp25" + +Node: population_estimate_sex/E0/b303917e-0d9e-8d58-e0e2-4d7d1227dbe6 +observationDate: 1921 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 53246000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1921value=53246000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/3j75jnnv7ggk4" + +Node: population_estimate_sex/E0/037bdba1-8d40-be5f-dde4-733bfb93d3e5 +observationDate: 1922 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 54163000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1922value=54163000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/5n9pe49w378mc" + +Node: population_estimate_sex/E0/57c4bb56-75e5-8578-e106-6e06e08d9028 +observationDate: 1923 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 55086000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1923value=55086000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/7rwc9sdc1wj89" + +Node: population_estimate_sex/E0/caf0d8af-8c49-3365-35a9-9f8c467dcf04 +observationDate: 1924 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 56124000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1924value=56124000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/f0vy5tf24cxwd" + +Node: population_estimate_sex/E0/112b1af2-2088-0d6a-dac8-6f4b15e1bbb0 +observationDate: 1925 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 57016000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1925value=57016000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mq5f28fwdt0t4" + +Node: population_estimate_sex/E0/14b084da-6cce-6a7d-0cbb-30f96ae570a7 +observationDate: 1926 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 57809000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1926value=57809000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mhhpej6e045v6" + +Node: population_estimate_sex/E0/e5d09c47-0dd0-ea41-0071-df498a601393 +observationDate: 1927 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 58638000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1927value=58638000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/e586lp49gmgd3" + +Node: population_estimate_sex/E0/414eb024-90d8-33d8-f20f-a2a8115b3cb1 +observationDate: 1928 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 59408000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1928value=59408000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ezdm84226dbqh" + +Node: population_estimate_sex/E0/c99f47db-d3f5-b3ad-814c-e1cd2a14e8ca +observationDate: 1929 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 60087000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1929value=60087000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/dkgen02gpnhb6" + +Node: population_estimate_sex/E0/41a78d6c-f989-d345-105f-f05b152ea332 +observationDate: 1930 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 60780224 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1930value=60780224observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/qvvpd51sxwmrb" + +Node: population_estimate_sex/E0/3de9b86b-d05b-fb02-3488-66b6114876fd +observationDate: 1931 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 61314145 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1931value=61314145observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/zl8hccswrp72b" + +Node: population_estimate_sex/E0/dd7da605-cb4b-45ab-fccf-588f24a38fc0 +observationDate: 1932 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 61770334 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1932value=61770334observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/0ksrwd9pxdfn7" + +Node: population_estimate_sex/E0/c7ed9777-3538-3760-134f-db71c5aadabd +observationDate: 1933 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 62194754 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1933value=62194754observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/n8zq5t4qwy6d9" + +Node: population_estimate_sex/E0/f76a70a8-c5f1-8b89-b6b0-7090a15382a6 +observationDate: 1934 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 62647577 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1934value=62647577observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/de69h0dw89vc9" + +Node: population_estimate_sex/E0/d9f4038e-9c97-f716-97b7-192e051a1cae +observationDate: 1935 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 63140344 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1935value=63140344observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/5t0qlx0r22eec" + +Node: population_estimate_sex/E0/926f603f-e233-816e-2d23-4e300f8ffa8f +observationDate: 1936 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 63593797 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1936value=63593797observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/4z9q5rwjf0xd9" + +Node: population_estimate_sex/E0/14cba252-c624-0d07-a547-14595016eedf +observationDate: 1937 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 64035032 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1937value=64035032observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/08zp0rtjbst6c" + +Node: population_estimate_sex/E0/880c5177-79e4-02bf-0f97-d3d4e7b66224 +observationDate: 1938 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 64589578 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1938value=64589578observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ec3cz8vn7d92" + +Node: population_estimate_sex/E0/1695dde7-a36d-bc51-a883-411ca3fd1969 +observationDate: 1939 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 65166379 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1939value=65166379observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/d2pfg2zjhgtd8" + +Node: population_estimate_sex/E0/c00aafed-e401-d438-1f11-bad313b748e5 +observationDate: 1940 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 65770083 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1940value=65770083observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/f5fymrpwwh30h" + +Node: population_estimate_sex/E0/9cc941be-ce4f-d592-6c07-863a8c739937 +observationDate: 1941 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 66482338 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1941value=66482338observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/kss8yjk8lq8pc" + +Node: population_estimate_sex/E0/e583c6af-33d8-8ea9-0e11-5c5a10599933 +observationDate: 1942 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 67262824 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1942value=67262824observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/fkdv7k9hz89vc" + +Node: population_estimate_sex/E0/a185d895-234d-b20e-fab1-c4bf46af3011 +observationDate: 1943 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 68193612 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1943value=68193612observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/xk6wtj0stwkt9" + +Node: population_estimate_sex/E0/21bef9a6-cb7d-728a-95b1-cca97943710d +observationDate: 1944 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 69019626 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1944value=69019626observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/cmpgxmrwprl89" + +Node: population_estimate_sex/E0/64ec3afd-51e3-21e9-3ca1-759d4aa221bd +observationDate: 1945 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 69893092 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1945value=69893092observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/t4y9drt9h12tb" + +Node: population_estimate_sex/E0/8a17ad59-9971-62b3-9b2d-dc428a695df1 +observationDate: 1946 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 70757395 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1946value=70757395observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/6wf9107kjygp3" + +Node: population_estimate_sex/E0/4d530955-8f8d-14c2-6648-9217c421bdb0 +observationDate: 1947 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 72180179 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1947value=72180179observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ss4tfxxsfl2x7" + +Node: population_estimate_sex/E0/2473537b-5fe2-6285-dc87-71d4cbc1fb02 +observationDate: 1948 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 73501618 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1948value=73501618observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/l8ttjnh1763cc" + +Node: population_estimate_sex/E0/525d00dc-b7ec-59ae-037d-e92fcc839b67 +observationDate: 1949 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 74852695 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1949value=74852695observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/8p6mwebvhb8q8" + +Node: population_estimate_sex/E0/d8641aa6-85b2-f2ad-80af-63e28d48f4ea +observationDate: 1950 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 76422405 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1950value=76422405observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/82vdpk3bzyt29" + +Node: population_estimate_sex/E0/9977efa4-b465-f53e-8e0d-2527195ecebe +observationDate: 1951 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 77776626 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1951value=77776626observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/36pl4wkqzmjt7" + +Node: population_estimate_sex/E0/4b48bac2-3f0a-5610-d012-04901fed62bb +observationDate: 1952 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 79180550 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1952value=79180550observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rchdznsy35c66" + +Node: population_estimate_sex/E0/38b2440f-0ef9-3efb-fd3d-f9f01f0a34a4 +observationDate: 1953 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 80569882 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1953value=80569882observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/kl32yh1v767m4" + +Node: population_estimate_sex/E0/352d0ea3-7346-9df9-c45e-dfee936af16a +observationDate: 1954 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 82053150 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1954value=82053150observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ydp5r02ypkp29" + +Node: population_estimate_sex/E0/747378de-0def-7b8a-0055-90ec52ffcd88 +observationDate: 1955 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 83567564 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1955value=83567564observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/y0gn7dst025l" + +Node: population_estimate_sex/E0/a92ed869-60db-025d-3ec6-fdf093d3c1cf +observationDate: 1956 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 85123526 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1956value=85123526observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/f34pq1mleg7s" + +Node: population_estimate_sex/E0/0b44b71d-63f5-a440-e155-6c201372c8c9 +observationDate: 1957 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 86735704 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1957value=86735704observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/gwejcbg7zvht6" + +Node: population_estimate_sex/E0/61a9d2a5-da1c-874b-a08c-d6e5f40b916e +observationDate: 1958 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 88276799 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1958value=88276799observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/1dvjgebjebx38" + +Node: population_estimate_sex/E0/ad715747-0f9e-6253-2ff6-7691aca278e3 +observationDate: 1959 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 89834194 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1959value=89834194observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mb06l837v0hn4" + +Node: population_estimate_sex/E0/6ce6533b-dce0-fe96-5f55-99714f6fced2 +observationDate: 1960 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 91351647 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1960value=91351647observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/612tygmk488f" + +Node: population_estimate_sex/E0/07fc9e3d-3400-0f1d-db92-355df9301134 +observationDate: 1961 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 92951562 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1961value=92951562observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9rn9gh3x4q1xg" + +Node: population_estimate_sex/E0/355c7c3d-34f9-93d9-6d61-edd3cea81c2e +observationDate: 1962 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 94471618 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1962value=94471618observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/bgwdcst4736g6" + +Node: population_estimate_sex/E0/eba21637-258d-6fd9-5308-a1c342415eaf +observationDate: 1963 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 95938865 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1963value=95938865observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/t6ckk5efd6m45" + +Node: population_estimate_sex/E0/63cefb44-e753-0b0e-50f4-5f0ada322933 +observationDate: 1964 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 97371039 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1964value=97371039observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/5qqyrmlb4bk1d" + +Node: population_estimate_sex/E0/da257e70-c895-85cf-0417-d90090d5c6eb +observationDate: 1965 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 98694462 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1965value=98694462observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/7ngqnp8hcql86" + +Node: population_estimate_sex/E0/10d92064-16aa-633c-b64e-ff34dae02010 +observationDate: 1966 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 99940627 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1966value=99940627observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/1xbbnj5qpb6v1" + +Node: population_estimate_sex/E0/3ad902a7-8efd-9854-39ea-95dfc1f318cc +observationDate: 1967 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 101148174 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1967value=101148174observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/dg241dsqwrz06" + +Node: population_estimate_sex/E0/f46d77cf-b256-916c-346a-7c75bbdfe3d4 +observationDate: 1968 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 102279795 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1968value=102279795observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/1vqzzw6ccp6b3" + +Node: population_estimate_sex/E0/57c989fd-e80d-3dc2-61be-76b502b477c2 +observationDate: 1969 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 103390000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1969value=103390000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/qldr1c47wnz25" + +Node: population_estimate_sex/E0/3d4c4c11-acfe-5a0a-c5b4-edb49b31da90 +observationDate: 1970 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 104698298 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1970value=104698298observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/xgp6rbp81zhk2" + +Node: population_estimate_sex/E0/fe16120d-b748-800b-20af-adc6491ab4b6 +observationDate: 1971 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 106093671 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1971value=106093671observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/yrscj9kp652h5" + +Node: population_estimate_sex/E0/843b3774-3d7b-95e6-ee10-bbbf13ef596a +observationDate: 1972 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 107305289 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1972value=107305289observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9b5ype24wt928" + +Node: population_estimate_sex/E0/6454c273-fbe7-83bb-eec9-4d25e46927db +observationDate: 1973 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 108402337 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1973value=108402337observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/emhxpgdwv71c3" + +Node: population_estimate_sex/E0/d58d4c36-7462-eeda-46f1-c17f63e00ae0 +observationDate: 1974 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 109462818 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1974value=109462818observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/2ctr9ebnfvr81" + +Node: population_estimate_sex/E0/2388bbb0-bc16-55b5-774b-45f188341bbc +observationDate: 1975 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 110607234 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1975value=110607234observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/t33jgh1byhx7b" + +Node: population_estimate_sex/E0/7ddbda2e-ee9f-9897-7344-bba9963fa904 +observationDate: 1976 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 111726560 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1976value=111726560observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/79pnl907lr2d4" + +Node: population_estimate_sex/E0/953fa438-e41e-aa07-6118-68538d3c064e +observationDate: 1977 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 112904877 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1977value=112904877observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rhr5q7yxwr2z1" + +Node: population_estimate_sex/E0/5921de18-7dad-75ef-b69b-212281c2d389 +observationDate: 1978 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 114160965 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1978value=114160965observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/jvbmrhs3vskk5" + +Node: population_estimate_sex/E0/b6a2e158-6144-41c6-ed4c-51631ca9625d +observationDate: 1979 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 115471526 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1979value=115471526observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/6jbpgctvenkx4" + +Node: population_estimate_sex/E0/a81ef154-fdba-5adf-62a5-b2421cab181f +observationDate: 1990 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 127969673 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1990value=127969673observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rxd5chwwv7d73" + +Node: population_estimate_sex/E0/962f293f-28bf-6e74-2e59-44e969028e06 +observationDate: 1991 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 129623972 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1991value=129623972observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/bfscw6msgddc1" + +Node: population_estimate_sex/E0/b27f7013-5746-f734-5b3f-71ec92798b35 +observationDate: 1992 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 131314217 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1992value=131314217observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rd1zr08nbm8ld" + +Node: population_estimate_sex/E0/6d49b1c6-6790-5c56-854d-d87b708c50f8 +observationDate: 1993 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 132989513 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1993value=132989513observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/16jg4w68g2f8h" + +Node: population_estimate_sex/E0/94e1a0c4-5de6-e878-29f6-a3118cc578e3 +observationDate: 1994 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 134566414 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1994value=134566414observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hlfd8emf03sm8" + +Node: population_estimate_sex/E0/be286f67-c7fb-3a59-cf88-9ba705638a1b +observationDate: 1995 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 136097660 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1995value=136097660observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mdww0kbfzs1p4" + +Node: population_estimate_sex/E0/f1878372-6b0f-d2fc-5d44-8ef735526c91 +observationDate: 1996 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 137621440 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1996value=137621440observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/2hhbv1nmq3nqd" + +Node: population_estimate_sex/E0/36a84490-74db-359f-2f44-f7a57c1fd0de +observationDate: 1997 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 139209099 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1997value=139209099observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/kh5b4cm1p0fsf" + +Node: population_estimate_sex/E0/028614da-9b15-cdb5-7fff-578be9bad6b5 +observationDate: 1998 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 140759913 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1998value=140759913observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/7fm03x2bwxt1b" + +Node: population_estimate_sex/E0/d9714764-0b2b-25fb-fcd0-078b88eca7e7 +observationDate: 1999 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 142272592 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1999value=142272592observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/gg27pst4xb3l9" + +Node: population_estimate_sex/E0/623e4913-fcbd-7865-668d-3fb54228ceb8 +observationDate: 2000 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 143719004 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2000value=143719004observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/z9ywk9gfgsyy4" + +Node: population_estimate_sex/E0/b4fc979a-fcdf-101f-9e15-5ecd923b4232 +observationDate: 2001 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 145077463 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2001value=145077463observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/s2s4cyggkqyd8" + +Node: population_estimate_sex/E0/e97dad0a-0b89-8e60-e106-a6a9b64634f8 +observationDate: 2002 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 146394634 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2002value=146394634observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/yespndlhd92yc" + +Node: population_estimate_sex/E0/f25f80c5-f0ed-7017-7e5f-21df9f169a07 +observationDate: 2003 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 147679036 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2003value=147679036observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/1hztdh4rb2vrg" + +Node: population_estimate_sex/E0/35183462-7311-f2c9-3184-6831e3966dc8 +observationDate: 2004 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 148977286 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2004value=148977286observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/4n9bxl9vlvryg" + +Node: population_estimate_sex/E0/b96193b7-d7af-f7af-b0b8-8de97b8fc11c +observationDate: 2005 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 150319521 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2005value=150319521observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/0v2b35t6mrlc8" + +Node: population_estimate_sex/E0/10a9c01f-3685-bcc5-79ab-57894a0ce6f6 +observationDate: 2006 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 151732647 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2006value=151732647observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/3k1vvf9p95j48" + +Node: population_estimate_sex/E0/54a11b3f-8efc-f876-94d0-0cf5070e3ada +observationDate: 2007 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 153166353 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2007value=153166353observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ldbql7s2meh68" + +Node: population_estimate_sex/E0/4769e20c-d302-d3b4-7673-2af32d19f825 +observationDate: 2008 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 154604015 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2008value=154604015observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/3r1jr1f9ejfrc" + +Node: population_estimate_sex/E0/c59d75c2-aef4-1795-60de-559f3086d83e +observationDate: 2009 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 155964075 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2009value=155964075observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ervnbftn3xt2g" + +Node: population_estimate_sex/E0/abfa4914-435c-e7f7-22f4-2a2559d18af9 +observationDate: 2010 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 157249665 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2010value=157249665observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/bwhf2ncer37tb" + +Node: population_estimate_sex/E0/a3530c46-7885-d674-db54-85aa7cb67a93 +observationDate: 2011 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 158370501 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2011value=158370501observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/b9hby8c604shf" + +Node: population_estimate_sex/E0/f0d765f9-899f-3db0-eafc-464bcf1b090e +observationDate: 2012 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 159480635 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2012value=159480635observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/sl0bbnm07b291" + +Node: population_estimate_sex/E0/7991bbec-cfea-c952-6cb2-bcc01f45b531 +observationDate: 2013 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 160545893 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2013value=160545893observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/61lw2cetmhyfb" + +Node: population_estimate_sex/E0/fad41f1d-2797-f4de-d0d4-694ad80a0104 +observationDate: 2014 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 161690519 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2014value=161690519observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/y1rlm329ymg9b" + +Node: population_estimate_sex/E0/08483e6b-b08d-6bc9-28f7-1e53ad4b85b4 +observationDate: 2015 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 162832151 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2015value=162832151observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/njpxntxqs8z5" + +Node: population_estimate_sex/E0/0dfde911-3527-339a-1234-b75b577708ca +observationDate: 2016 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 163986062 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2016value=163986062observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/f3y0dxwevvrbd" + +Node: population_estimate_sex/E0/d47d0793-c13b-1354-c59a-6b100c64ffe6 +observationDate: 2017 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 165008683 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2017value=165008683observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/qxebdl1k0mplg" + +Node: population_estimate_sex/E0/e5869011-44b6-ff2e-7f9a-a46fe18000b2 +observationDate: 2018 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 165877686 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2018value=165877686observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/000djxym35y76" + +Node: population_estimate_sex/E0/c164d3fd-b0f0-7db9-2c27-afe8df25f7a1 +observationDate: 2019 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 166637617 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2019value=166637617observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ddqvb8ct7pve9" + +Node: population_estimate_sex/E0/59af57c4-4efb-d4c9-b9ef-455407f350a5 +observationDate: 2020 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 167227921 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2020value=167227921observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/nb0dqjfhm21g1" + diff --git a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv new file mode 100644 index 0000000000..92c6baf467 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv @@ -0,0 +1,223 @@ +Year,geo_ID,Measurement_Method,SV,Observation +1900,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,38867000 +1901,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,39649000 +1902,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,40483000 +1903,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,41262000 +1904,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,42089000 +1905,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,42965000 +1906,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,43841000 +1907,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,44682000 +1908,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,45594000 +1909,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,46545000 +1910,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,47554000 +1911,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,48290000 +1912,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,49025000 +1913,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,49957000 +1914,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,50883000 +1915,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,51573000 +1916,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,52234000 +1917,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,52788000 +1918,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,51974000 +1919,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,53103000 +1920,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,54291000 +1921,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,55292000 +1922,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,55886000 +1923,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,56861000 +1924,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,57985000 +1925,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,58813000 +1926,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,59588000 +1927,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,60397000 +1928,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,61101000 +1929,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,61680000 +1930,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,62296517 +1931,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,62725503 +1932,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,63070137 +1933,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,63384009 +1934,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,63726196 +1935,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,64109888 +1936,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,64459383 +1937,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,64789797 +1938,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,65235361 +1939,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,65713339 +1940,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,66352363 +1941,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,66920133 +1942,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,67596729 +1943,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,68545741 +1944,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,69377719 +1945,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,70035073 +1946,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,70631171 +1947,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,71945892 +1948,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,73129684 +1949,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,74335435 +1950,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,75849012 +1951,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,77101263 +1952,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,78372190 +1953,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,79614310 +1954,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,80972704 +1955,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,82363638 +1956,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,83779505 +1957,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,85248426 +1958,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,86605105 +1959,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,87995434 +1960,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,89319511 +1961,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,90739919 +1962,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,92066119 +1963,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,93302933 +1964,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,94517752 +1965,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,95608501 +1966,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,96619711 +1967,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,97563882 +1968,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,98426257 +1969,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,99286946 +1970,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,100353876 +1971,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,101567006 +1972,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,102590732 +1973,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,103506451 +1974,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,104391110 +1975,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,105365965 +1976,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,106308604 +1977,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,107334548 +1978,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,108423580 +1979,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,109583961 +1990,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,122162221 +1991,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,123868531 +1992,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,125579972 +1993,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,127265839 +1994,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,128869259 +1995,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,130459431 +1996,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,132045951 +1997,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,133702661 +1998,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,135355375 +1999,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,137022121 +2000,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,138443407 +2001,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,139891492 +2002,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,141230559 +2003,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,142428897 +2004,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,143828012 +2005,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,145197078 +2006,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,146647265 +2007,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,148064854 +2008,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,149489951 +2009,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,150807454 +2010,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,152077478 +2011,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,153212980 +2012,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,154397027 +2013,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,155514054 +2014,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,156695810 +2015,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,157906843 +2016,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,159085693 +2017,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,160113445 +2018,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,160960513 +2019,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,161692336 +2020,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,162256202 +1900,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,37227000 +1901,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,37935000 +1902,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,38680000 +1903,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,39370000 +1904,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,40077000 +1905,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,40857000 +1906,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,41609000 +1907,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,42326000 +1908,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,43116000 +1909,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,43945000 +1910,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,44853000 +1911,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,45573000 +1912,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,46310000 +1913,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,47268000 +1914,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,48228000 +1915,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,48973000 +1916,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,49727000 +1917,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,50480000 +1918,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,51234000 +1919,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,51411000 +1920,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,52170000 +1921,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,53246000 +1922,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,54163000 +1923,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,55086000 +1924,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,56124000 +1925,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,57016000 +1926,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,57809000 +1927,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,58638000 +1928,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,59408000 +1929,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,60087000 +1930,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,60780224 +1931,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,61314145 +1932,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,61770334 +1933,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,62194754 +1934,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,62647577 +1935,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,63140344 +1936,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,63593797 +1937,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,64035032 +1938,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,64589578 +1939,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,65166379 +1940,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,65770083 +1941,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,66482338 +1942,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,67262824 +1943,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,68193612 +1944,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,69019626 +1945,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,69893092 +1946,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,70757395 +1947,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,72180179 +1948,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,73501618 +1949,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,74852695 +1950,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,76422405 +1951,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,77776626 +1952,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,79180550 +1953,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,80569882 +1954,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,82053150 +1955,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,83567564 +1956,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,85123526 +1957,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,86735704 +1958,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,88276799 +1959,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,89834194 +1960,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,91351647 +1961,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,92951562 +1962,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,94471618 +1963,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,95938865 +1964,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,97371039 +1965,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,98694462 +1966,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,99940627 +1967,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,101148174 +1968,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,102279795 +1969,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,103390000 +1970,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,104698298 +1971,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,106093671 +1972,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,107305289 +1973,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,108402337 +1974,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,109462818 +1975,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,110607234 +1976,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,111726560 +1977,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,112904877 +1978,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,114160965 +1979,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,115471526 +1990,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,127969673 +1991,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,129623972 +1992,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,131314217 +1993,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,132989513 +1994,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,134566414 +1995,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,136097660 +1996,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,137621440 +1997,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,139209099 +1998,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,140759913 +1999,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,142272592 +2000,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,143719004 +2001,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,145077463 +2002,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,146394634 +2003,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,147679036 +2004,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,148977286 +2005,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,150319521 +2006,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,151732647 +2007,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,153166353 +2008,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,154604015 +2009,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,155964075 +2010,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,157249665 +2011,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,158370501 +2012,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,159480635 +2013,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,160545893 +2014,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,161690519 +2015,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,162832151 +2016,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,163986062 +2017,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,165008683 +2018,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,165877686 +2019,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,166637617 +2020,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,167227921 diff --git a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf new file mode 100644 index 0000000000..70fd7bb0dc --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf @@ -0,0 +1,13 @@ +Node: dcid:Count_Person_Female +typeOf: dcs:StatisticalVariable +populationType: dcs:Person +gender: dcs:Female +statType: dcs:measuredValue +measuredProperty: dcs:count + +Node: dcid:Count_Person_Male +typeOf: dcs:StatisticalVariable +populationType: dcs:Person +gender: dcs:Male +statType: dcs:measuredValue +measuredProperty: dcs:count \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf new file mode 100644 index 0000000000..34bc31744a --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf @@ -0,0 +1,8 @@ +Node: E:population_estimate_sex->E0 +typeOf: dcs:StatVarObservation +variableMeasured: C:population_estimate_sex->SV +measurementMethod: C:population_estimate_sex->Measurement_Method +observationAbout: C:population_estimate_sex->geo_ID +observationDate: C:population_estimate_sex->Year +observationPeriod: "P1Y" +value: C:population_estimate_sex->Observation \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/process.py b/scripts/us_census/pep/us_pep_sex/process.py index 8eda40aa4d..28337d0216 100644 --- a/scripts/us_census/pep/us_pep_sex/process.py +++ b/scripts/us_census/pep/us_pep_sex/process.py @@ -995,7 +995,7 @@ def process(self): Returns: None """ - ip_files = os.listdir(self._input_path) + ip_files = sorted(os.listdir(self._input_path)) ip_files = [self._input_path + os.sep + file for file in ip_files] # Creating Output Directory @@ -1213,7 +1213,8 @@ def add_future_year_urls(): try: check_url = requests.head(url_to_check, - allow_redirects=True) + allow_redirects=True, + timeout=10) if check_url.status_code == 200: _FILES_TO_DOWNLOAD.append( {"download_path": url_to_check}) @@ -1221,6 +1222,7 @@ def add_future_year_urls(): except requests.exceptions.RequestException as e: logging.error( f"URL is not accessible {url_to_check} due to {e}") + time.sleep(0.05) else: # This URL does not contain {i}, so we only need to process it once per year url_to_check = url.format(YEAR=YEAR) @@ -1231,7 +1233,8 @@ def add_future_year_urls(): try: check_url = requests.head(url_to_check, - allow_redirects=True) + allow_redirects=True, + timeout=10) if check_url.status_code == 200: _FILES_TO_DOWNLOAD.append( {"download_path": url_to_check}) @@ -1246,6 +1249,7 @@ def add_future_year_urls(): except requests.exceptions.RequestException as e: logging.error( f"URL is not accessible {url_to_check} due to {e}") + time.sleep(0.05) def cleanup(): @@ -1303,46 +1307,61 @@ def download_files(): continue headers = {'User-Agent': 'Mozilla/5.0'} - try: - with session.get(url, stream=True, timeout=120, - headers=headers) as response: - response.raise_for_status() - - content_type = response.headers.get('Content-Type', '') - - # Minimal fix: Log error and continue to skip HTML pages - if 'html' in content_type.lower(): - logging.error( - f"Server returned HTML error page for URL: {url}. Skipping." - ) - continue + max_file_retries = 3 + file_download_success = False - if response.status_code == 200: - with tempfile.NamedTemporaryFile(delete=False) as tmp_file: - for chunk in response.iter_content(chunk_size=8192): - if chunk: - tmp_file.write(chunk) - tmp_file_path = tmp_file.name + for attempt in range(max_file_retries): + try: + # Dynamically increase timeout on subsequent retries + current_timeout = 120 + (attempt * 60) + with session.get(url, stream=True, timeout=current_timeout, + headers=headers) as response: + response.raise_for_status() - # Copy to local destination - shutil.copy( - tmp_file_path, - os.path.join(_INPUT_FILE_PATH, file_name_to_save)) + content_type = response.headers.get('Content-Type', '') - # Move to gcs destination (optimized from shutil.copy + os.remove) - shutil.move( - tmp_file_path, - os.path.join(_GCS_FOLDER_PERSISTENT_PATH, - file_name_to_save)) - - file_to_download['is_downloaded'] = True - logging.info(f"Downloaded file: {url}") - - except Exception as e: - file_to_download['is_downloaded'] = False - logging.error(f"Error downloading {url}: {e}") - raise - time.sleep(1) + # Minimal fix: Log error and continue to skip HTML pages + if 'html' in content_type.lower(): + logging.error( + f"Server returned HTML error page for URL: {url}. Skipping." + ) + break + + if response.status_code == 200: + with tempfile.NamedTemporaryFile(delete=False) as tmp_file: + for chunk in response.iter_content(chunk_size=8192): + if chunk: + tmp_file.write(chunk) + tmp_file_path = tmp_file.name + + # Copy to local destination + shutil.copy( + tmp_file_path, + os.path.join(_INPUT_FILE_PATH, file_name_to_save)) + + # Move to gcs destination (optimized from shutil.copy + os.remove) + shutil.move( + tmp_file_path, + os.path.join(_GCS_FOLDER_PERSISTENT_PATH, + file_name_to_save)) + + file_to_download['is_downloaded'] = True + logging.info(f"Downloaded file: {url}") + file_download_success = True + break + + except Exception as e: + logging.warning(f"Attempt {attempt + 1} failed downloading {url}: {e}") + if attempt < max_file_retries - 1: + # Exponential backoff: 5s, 10s... + time.sleep(5 * (attempt + 1)) + else: + file_to_download['is_downloaded'] = False + logging.error(f"Failed to download {url} after {max_file_retries} attempts.") + raise + + if file_download_success: + time.sleep(1) return True diff --git a/scripts/us_census/pep/us_pep_sex/validation_config.json b/scripts/us_census/pep/us_pep_sex/validation_config.json new file mode 100644 index 0000000000..7dff19a4b8 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/validation_config.json @@ -0,0 +1,22 @@ +{ + "schema_version": "1.0", + "rules": [ + { + "rule_id": "check_deleted_records_percent", + "description": "Checks that the percentage of deleted points is within the threshold.", + "validator": "DELETED_RECORDS_PERCENT", + "params": { + "threshold": 0.1 + } + }, + { + "rule_id": "check_goldens_summary_report", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report.csv" + } + } + ] +} + + From 6ed8fb67888e518c913dfbd92c46cf69d993246a Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Mon, 13 Jul 2026 11:27:58 +0000 Subject: [PATCH 3/7] remove output folder from us_pep_sex and update .gitignore --- .gitignore | 1 + .../output/new_rec_gen_sa/report.json | 66 - .../output/new_rec_gen_sa/summary_report.csv | 3 - .../output/new_rec_gen_sa/summary_report.html | 487 ---- ...able_mcf_nodes_population_estimate_sex.mcf | 2442 ----------------- .../output/population_estimate_sex.csv | 223 -- .../output/population_estimate_sex.mcf | 13 - .../output/population_estimate_sex.tmcf | 8 - 8 files changed, 1 insertion(+), 3242 deletions(-) delete mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json delete mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv delete mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html delete mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf delete mode 100644 scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv delete mode 100644 scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf delete mode 100644 scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf diff --git a/.gitignore b/.gitignore index a05b550de3..3a0ebfcab1 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ import-automation/executor/config_override.json .venv/ +output/ diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json deleted file mode 100644 index 25038870d8..0000000000 --- a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "levelSummary": { - "LEVEL_INFO": { - "counters": { - "NumRowSuccesses": "222", - "NumPVSuccesses": "1998", - "Existence_NumChecks": "2220", - "NumNodeSuccesses": "222", - "Existence_NumDcCalls": "1" - } - }, - "LEVEL_WARNING": { - "counters": { - "StatsCheck_Data_Holes": "2" - } - } - }, - "statsCheckSummary": [{ - "placeDcid": "country/USA", - "statVarDcid": "Count_Person_Female", - "measurementMethod": "dcAggregate/CensusPEPSurvey_PartialAggregate", - "observationPeriod": "P1Y", - "scalingFactor": "", - "unit": "", - "validationCounters": [{ - "counterKey": "StatsCheck_Data_Holes", - "additionalDetails": "Possible data hole found. Dates in this series: 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020" - }] - }, { - "placeDcid": "country/USA", - "statVarDcid": "Count_Person_Male", - "measurementMethod": "dcAggregate/CensusPEPSurvey_PartialAggregate", - "observationPeriod": "P1Y", - "scalingFactor": "", - "unit": "", - "validationCounters": [{ - "counterKey": "StatsCheck_Data_Holes", - "additionalDetails": "Possible data hole found. Dates in this series: 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020" - }] - }], - "commandArgs": { - "existenceChecks": true, - "resolution": "RESOLUTION_MODE_LOCAL", - "numThreads": 1, - "statChecks": true, - "observationAbout": true, - "allowNanSvobs": false, - "checkMeasurementResult": false, - "coordinatesResolution": false, - "includeRuntimeMetadata": true, - "inputFiles": ["population_estimate_sex.tmcf", "population_estimate_sex.csv"], - "delimiter": "," - }, - "runtimeMetadata": { - "startTimeMillis": "1783925730493", - "endTimeMillis": "1783925732456", - "username": "niveditasing", - "hostname": "nivedita.c.googlers.com", - "osName": "Linux", - "osVersion": "6.18.14-1rodete3-amd64", - "javaVersion": "26.0.1", - "toolVersion": "0.1", - "toolBuildTimestamp": "2025-08-15T04:10:36+0000", - "toolGitCommitHash": "baee738" - } -} \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv deleted file mode 100644 index ffdf60e444..0000000000 --- a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv +++ /dev/null @@ -1,3 +0,0 @@ -StatVar,NumPlaces,NumObservations,MinValue,MaxValue,NumObservationsDates,MinDate,MaxDate,MeasurementMethods,Units,ScalingFactors,observationPeriods -Count_Person_Female,1,111,3.7227E7,1.67227921E8,111,1900,2020,[dcAggregate/CensusPEPSurvey_PartialAggregate],[],[],[P1Y] -Count_Person_Male,1,111,3.8867E7,1.62256202E8,111,1900,2020,[dcAggregate/CensusPEPSurvey_PartialAggregate],[],[],[P1Y] diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html deleted file mode 100644 index a6ba135007..0000000000 --- a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html +++ /dev/null @@ -1,487 +0,0 @@ - - - Summary Report - - - - - - - - - - -
- Go to Top -
-

Summary Report

-

Table of Contents

- - - - -
-

- Import Run Details -

- -

Runtime Information

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Report Generated AtJul 13, 2026
Generation Duration1.963 seconds
Generated Byniveditasing
Hostnivedita.c.googlers.com
Operating SystemLinux 6.18.14-1rodete3-amd64
Java Version26.0.1
Tool Version0.1
Tool Git Commit Hashbaee738
Tool Build Time2025-08-15T04:10:36+0000
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Existence Checks Enabledyes
Resolution ModeRESOLUTION_MODE_LOCAL
Num Threads1
Stat Checks Enabledyes
Sample Places Entered
Input Files -
population_estimate_sex.tmcf
-
population_estimate_sex.csv
-
CSV Delimiter,
-
- - -
-

- Counters -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Counter NameNum Occurences
LEVEL_INFO
NumRowSuccesses222
NumPVSuccesses1,998
Existence_NumChecks2,220
NumNodeSuccesses222
Existence_NumDcCalls1
LEVEL_WARNING
StatsCheck_Data_Holes2
-
- -
-

- StatVarObservations by StatVar -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
StatVarNum PlacesNum ObservationsMin ValueMax ValueNum Observation DatesMin DateMax DateMeasurement MethodsUnitsScaling FactorsObservation Periods
Count_Person_Female111137,227,000167,227,92111119002020 -
dcAggregate/CensusPEPSurvey_PartialAggregate
-
-
-
-
-
-
P1Y
-
Count_Person_Male111138,867,000162,256,20211119002020 -
dcAggregate/CensusPEPSurvey_PartialAggregate
-
-
-
-
-
-
P1Y
-
-
-
-

- Series Summaries for Sample Places -

- -
- United States (country/USA) - Open this place (country/USA) in Data Commons browser. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
StatVarNum ObservationsDatesCorresponding ValuesMeasurement MethodUnitScaling FactorObservation PeriodTime Series Chart
Count_Person_Female1111900 | 1901 | 1902 | 1903 | 1904 | 1905 | 1906 | 1907 | 1908 | 1909 | 1910 | 1911 | 1912 | 1913 | 1914 | 1915 | 1916 | 1917 | 1918 | 1919 | 1920 | 1921 | 1922 | 1923 | 1924 | 1925 | 1926 | 1927 | 1928 | 1929 | 1930 | 1931 | 1932 | 1933 | 1934 | 1935 | 1936 | 1937 | 1938 | 1939 | 1940 | 1941 | 1942 | 1943 | 1944 | 1945 | 1946 | 1947 | 1948 | 1949 | 1950 | 1951 | 1952 | 1953 | 1954 | 1955 | 1956 | 1957 | 1958 | 1959 | 1960 | 1961 | 1962 | 1963 | 1964 | 1965 | 1966 | 1967 | 1968 | 1969 | 1970 | 1971 | 1972 | 1973 | 1974 | 1975 | 1976 | 1977 | 1978 | 1979 | 1990 | 1991 | 1992 | 1993 | 1994 | 1995 | 1996 | 1997 | 1998 | 1999 | 2000 | 2001 | 2002 | 2003 | 2004 | 2005 | 2006 | 2007 | 2008 | 2009 | 2010 | 2011 | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | 2018 | 2019 | 202037227000 | 37935000 | 38680000 | 39370000 | 40077000 | 40857000 | 41609000 | 42326000 | 43116000 | 43945000 | 44853000 | 45573000 | 46310000 | 47268000 | 48228000 | 48973000 | 49727000 | 50480000 | 51234000 | 51411000 | 52170000 | 53246000 | 54163000 | 55086000 | 56124000 | 57016000 | 57809000 | 58638000 | 59408000 | 60087000 | 60780224 | 61314145 | 61770334 | 62194754 | 62647577 | 63140344 | 63593797 | 64035032 | 64589578 | 65166379 | 65770083 | 66482338 | 67262824 | 68193612 | 69019626 | 69893092 | 70757395 | 72180179 | 73501618 | 74852695 | 76422405 | 77776626 | 79180550 | 80569882 | 82053150 | 83567564 | 85123526 | 86735704 | 88276799 | 89834194 | 91351647 | 92951562 | 94471618 | 95938865 | 97371039 | 98694462 | 99940627 | 101148174 | 102279795 | 103390000 | 104698298 | 106093671 | 107305289 | 108402337 | 109462818 | 110607234 | 111726560 | 112904877 | 114160965 | 115471526 | 127969673 | 129623972 | 131314217 | 132989513 | 134566414 | 136097660 | 137621440 | 139209099 | 140759913 | 142272592 | 143719004 | 145077463 | 146394634 | 147679036 | 148977286 | 150319521 | 151732647 | 153166353 | 154604015 | 155964075 | 157249665 | 158370501 | 159480635 | 160545893 | 161690519 | 162832151 | 163986062 | 165008683 | 165877686 | 166637617 | 167227921 -
dcAggregate/CensusPEPSurvey_PartialAggregate
-
-
-
-
-
-
P1Y
-
- - - -19001910192019301940195019601970198019902000201020204E76E78E71E81.2E81.4E81.6E8
Count_Person_Male1111900 | 1901 | 1902 | 1903 | 1904 | 1905 | 1906 | 1907 | 1908 | 1909 | 1910 | 1911 | 1912 | 1913 | 1914 | 1915 | 1916 | 1917 | 1918 | 1919 | 1920 | 1921 | 1922 | 1923 | 1924 | 1925 | 1926 | 1927 | 1928 | 1929 | 1930 | 1931 | 1932 | 1933 | 1934 | 1935 | 1936 | 1937 | 1938 | 1939 | 1940 | 1941 | 1942 | 1943 | 1944 | 1945 | 1946 | 1947 | 1948 | 1949 | 1950 | 1951 | 1952 | 1953 | 1954 | 1955 | 1956 | 1957 | 1958 | 1959 | 1960 | 1961 | 1962 | 1963 | 1964 | 1965 | 1966 | 1967 | 1968 | 1969 | 1970 | 1971 | 1972 | 1973 | 1974 | 1975 | 1976 | 1977 | 1978 | 1979 | 1990 | 1991 | 1992 | 1993 | 1994 | 1995 | 1996 | 1997 | 1998 | 1999 | 2000 | 2001 | 2002 | 2003 | 2004 | 2005 | 2006 | 2007 | 2008 | 2009 | 2010 | 2011 | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | 2018 | 2019 | 202038867000 | 39649000 | 40483000 | 41262000 | 42089000 | 42965000 | 43841000 | 44682000 | 45594000 | 46545000 | 47554000 | 48290000 | 49025000 | 49957000 | 50883000 | 51573000 | 52234000 | 52788000 | 51974000 | 53103000 | 54291000 | 55292000 | 55886000 | 56861000 | 57985000 | 58813000 | 59588000 | 60397000 | 61101000 | 61680000 | 62296517 | 62725503 | 63070137 | 63384009 | 63726196 | 64109888 | 64459383 | 64789797 | 65235361 | 65713339 | 66352363 | 66920133 | 67596729 | 68545741 | 69377719 | 70035073 | 70631171 | 71945892 | 73129684 | 74335435 | 75849012 | 77101263 | 78372190 | 79614310 | 80972704 | 82363638 | 83779505 | 85248426 | 86605105 | 87995434 | 89319511 | 90739919 | 92066119 | 93302933 | 94517752 | 95608501 | 96619711 | 97563882 | 98426257 | 99286946 | 100353876 | 101567006 | 102590732 | 103506451 | 104391110 | 105365965 | 106308604 | 107334548 | 108423580 | 109583961 | 122162221 | 123868531 | 125579972 | 127265839 | 128869259 | 130459431 | 132045951 | 133702661 | 135355375 | 137022121 | 138443407 | 139891492 | 141230559 | 142428897 | 143828012 | 145197078 | 146647265 | 148064854 | 149489951 | 150807454 | 152077478 | 153212980 | 154397027 | 155514054 | 156695810 | 157906843 | 159085693 | 160113445 | 160960513 | 161692336 | 162256202 -
dcAggregate/CensusPEPSurvey_PartialAggregate
-
-
-
-
-
-
P1Y
-
- - - -19001910192019301940195019601970198019902000201020204E76E78E71E81.2E81.4E81.6E8
-
-
- - - - \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf deleted file mode 100644 index f6535818dd..0000000000 --- a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf +++ /dev/null @@ -1,2442 +0,0 @@ -Node: population_estimate_sex/E0/736604b9-4425-bb7d-c788-9a8fde278f50 -observationDate: 1900 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 38867000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1900value=38867000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/gbwsvx3cq28nc" - -Node: population_estimate_sex/E0/95478b8e-9b15-7ea1-d9ac-a461fec317dd -observationDate: 1901 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 39649000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1901value=39649000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/23s5qjbflpzhc" - -Node: population_estimate_sex/E0/4938d26d-30e7-3bc3-2d73-6f183ce77e67 -observationDate: 1902 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 40483000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1902value=40483000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/y171j1c07xec1" - -Node: population_estimate_sex/E0/f7546b99-2ac9-998a-d369-59bd6c32ad62 -observationDate: 1903 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 41262000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1903value=41262000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/0jznt229e9ev1" - -Node: population_estimate_sex/E0/c38e7315-334b-2e47-34dd-9360aa44c6e2 -observationDate: 1904 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 42089000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1904value=42089000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/k1hfddv2endtg" - -Node: population_estimate_sex/E0/7bdea8d8-96ec-9ce0-f5d3-2df21ed03af3 -observationDate: 1905 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 42965000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1905value=42965000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rdmj3w5d5y9vg" - -Node: population_estimate_sex/E0/6e836869-4e42-02e4-87b4-fbf38b39e623 -observationDate: 1906 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 43841000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1906value=43841000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/5gthkyp4x8343" - -Node: population_estimate_sex/E0/514e3066-5151-cfa7-0776-52b47550ebf7 -observationDate: 1907 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 44682000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1907value=44682000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/y9etrcn2ed1f5" - -Node: population_estimate_sex/E0/f9e603d4-cc76-5ee3-c32c-3f8aaad3d0f3 -observationDate: 1908 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 45594000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1908value=45594000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ne2r3vd58se51" - -Node: population_estimate_sex/E0/338f8ab2-78f7-8a43-78c6-14ebecd2e109 -observationDate: 1909 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 46545000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1909value=46545000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/1x109c87vx19c" - -Node: population_estimate_sex/E0/f8232015-c89f-e96f-3648-38d85e7446b7 -observationDate: 1910 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 47554000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1910value=47554000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/8p48bgf9kspr6" - -Node: population_estimate_sex/E0/33d47208-1db0-3dcc-3c77-f459ddcb3663 -observationDate: 1911 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 48290000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1911value=48290000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/bez1zg3j84yff" - -Node: population_estimate_sex/E0/780d868e-233c-61c4-52e2-cb8a5a7c1c38 -observationDate: 1912 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 49025000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1912value=49025000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rlcenmsygsme4" - -Node: population_estimate_sex/E0/1b116854-34e1-09c9-7a5b-2c86a4e5fbd5 -observationDate: 1913 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 49957000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1913value=49957000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/q12r1jnfd1myc" - -Node: population_estimate_sex/E0/0023a201-b5eb-ce29-e754-9c343038006e -observationDate: 1914 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 50883000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1914value=50883000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/yze1et1zlp3j4" - -Node: population_estimate_sex/E0/a0e20d63-1b09-e638-2bd7-1e0777228de0 -observationDate: 1915 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 51573000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1915value=51573000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9yrccgk7befg6" - -Node: population_estimate_sex/E0/b7bb5768-d615-e914-6e1d-102208791e93 -observationDate: 1916 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 52234000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1916value=52234000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/l6g57s7m68ewh" - -Node: population_estimate_sex/E0/94b433d4-ad26-0982-5685-4e91519ca311 -observationDate: 1917 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 52788000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1917value=52788000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mb7x5xhqmrrbh" - -Node: population_estimate_sex/E0/9b2ef32a-ffd9-2769-21a8-62261903481f -observationDate: 1918 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 51974000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1918value=51974000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/cfhgnzkkb93j5" - -Node: population_estimate_sex/E0/33d0d769-dc77-8466-59f2-0076dce15cd6 -observationDate: 1919 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 53103000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1919value=53103000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/bct70kr4lggf3" - -Node: population_estimate_sex/E0/4869a928-e627-9227-0a96-3a31fa155797 -observationDate: 1920 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 54291000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1920value=54291000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9zb3vns1gvrn" - -Node: population_estimate_sex/E0/fa17abdd-4b9f-44dd-1347-923928290351 -observationDate: 1921 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 55292000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1921value=55292000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ncyt7hwr120j6" - -Node: population_estimate_sex/E0/0318dee9-92a9-ff81-7508-ed6b6c8a05f0 -observationDate: 1922 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 55886000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1922value=55886000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/3f3hw9x9191s1" - -Node: population_estimate_sex/E0/0a91bd92-c917-4700-c427-5f23fff4d4a6 -observationDate: 1923 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 56861000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1923value=56861000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mrmf30m8twqzg" - -Node: population_estimate_sex/E0/655aeb58-004c-7050-984c-95c7b453465d -observationDate: 1924 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 57985000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1924value=57985000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mfthfrpcpbw24" - -Node: population_estimate_sex/E0/3d7f3249-5d62-e572-dd8a-cd4ec5511973 -observationDate: 1925 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 58813000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1925value=58813000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/l4eey234yfq8f" - -Node: population_estimate_sex/E0/4df76fbe-9c33-6d17-66d1-a1d1bc836f9f -observationDate: 1926 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 59588000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1926value=59588000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/151rxl9t70l43" - -Node: population_estimate_sex/E0/2521bd74-c1ef-b0be-a40d-9b4b84ab265a -observationDate: 1927 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 60397000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1927value=60397000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/h5lmsl6l9npdb" - -Node: population_estimate_sex/E0/d2d903b4-8aee-6948-fb67-e65e484fda90 -observationDate: 1928 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 61101000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1928value=61101000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/2p2mjq5k0xx45" - -Node: population_estimate_sex/E0/06d17688-9033-7556-865c-319f4d87078b -observationDate: 1929 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 61680000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1929value=61680000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mctnjdzv163s7" - -Node: population_estimate_sex/E0/82d26a55-2ca5-e8e6-5a3c-e19c8934c4f7 -observationDate: 1930 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 62296517 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1930value=62296517observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/56mg4mxdpbxtg" - -Node: population_estimate_sex/E0/85085113-2f4d-021e-c11d-6893d9ed4b0e -observationDate: 1931 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 62725503 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1931value=62725503observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ew3e189dczgy8" - -Node: population_estimate_sex/E0/ad5cd01a-55ff-ba59-175e-dfd69082058a -observationDate: 1932 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 63070137 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1932value=63070137observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/l1dwyq7zjv5w9" - -Node: population_estimate_sex/E0/f2a30a2d-0896-dbb3-c9df-a4395596914c -observationDate: 1933 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 63384009 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1933value=63384009observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/3rmvjz4302js2" - -Node: population_estimate_sex/E0/b97dde59-ec5e-7d82-9f60-7f1e1139a93b -observationDate: 1934 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 63726196 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1934value=63726196observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/t3v0jcr858t0b" - -Node: population_estimate_sex/E0/3de59e3c-dc3f-f6b1-4bf6-eb4f1ba7e6eb -observationDate: 1935 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 64109888 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1935value=64109888observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/qcdzp9503b8xc" - -Node: population_estimate_sex/E0/4b70dd8d-4fdd-4303-d832-aaf713748be2 -observationDate: 1936 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 64459383 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1936value=64459383observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/80z4vemghqy17" - -Node: population_estimate_sex/E0/062846a5-f33b-9ed0-ad34-d4199d977f95 -observationDate: 1937 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 64789797 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1937value=64789797observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/g08k5g3q4y416" - -Node: population_estimate_sex/E0/09784003-c19e-9704-ee00-b63a5664e8c4 -observationDate: 1938 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 65235361 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1938value=65235361observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/y7zqreqnvq5jg" - -Node: population_estimate_sex/E0/600c5fb4-c8a0-8c10-34d1-37541071f34b -observationDate: 1939 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 65713339 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1939value=65713339observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/qvc2lvmhet38b" - -Node: population_estimate_sex/E0/a4decf16-0639-b2ba-0177-089c19c71a02 -observationDate: 1940 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 66352363 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1940value=66352363observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hkw3558k5xed5" - -Node: population_estimate_sex/E0/7a8d975c-1b84-e599-3861-85cd9b2c0beb -observationDate: 1941 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 66920133 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1941value=66920133observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hnv9s192hwz5f" - -Node: population_estimate_sex/E0/bd66a898-644e-c801-08e6-da303380a437 -observationDate: 1942 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 67596729 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1942value=67596729observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/cv9h9bs5jfq73" - -Node: population_estimate_sex/E0/64294a5a-7d01-9352-7ac3-11aa068cabd8 -observationDate: 1943 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 68545741 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1943value=68545741observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/4fcj1rx2s8466" - -Node: population_estimate_sex/E0/86debe35-624a-8486-d596-18151698a81f -observationDate: 1944 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 69377719 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1944value=69377719observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/3qfm6xjew52gg" - -Node: population_estimate_sex/E0/3240599e-8346-397f-f516-1183c86699e7 -observationDate: 1945 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 70035073 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1945value=70035073observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/j4dvqvl1r30jd" - -Node: population_estimate_sex/E0/17463a08-ad17-ff1a-cac8-d416c202a383 -observationDate: 1946 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 70631171 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1946value=70631171observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/14l31n5xg2bd2" - -Node: population_estimate_sex/E0/12368817-bf5a-c9ba-caf7-d14b36c9c453 -observationDate: 1947 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 71945892 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1947value=71945892observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/zmhmnl214w3jf" - -Node: population_estimate_sex/E0/2cfac78d-8269-2252-c725-d45e30bd46e1 -observationDate: 1948 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 73129684 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1948value=73129684observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/98lfjqh3fvzt1" - -Node: population_estimate_sex/E0/fcd64f24-3b6c-28db-4718-0e8c39fc3644 -observationDate: 1949 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 74335435 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1949value=74335435observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/zmvz2s0q5d7l6" - -Node: population_estimate_sex/E0/01fc28bf-ae5f-9bf9-74c6-fbbdf93951a5 -observationDate: 1950 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 75849012 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1950value=75849012observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/5rx0c9s2x6bzb" - -Node: population_estimate_sex/E0/22825662-ac62-41db-98cd-14fe3cd16a10 -observationDate: 1951 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 77101263 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1951value=77101263observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/b4prprzhqdse9" - -Node: population_estimate_sex/E0/8f69a8df-1bc8-4fd8-0f40-42f6fc61221e -observationDate: 1952 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 78372190 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1952value=78372190observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/8m9vvexy8ezwb" - -Node: population_estimate_sex/E0/8019d492-8643-7c05-a0f2-2a12a9a53655 -observationDate: 1953 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 79614310 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1953value=79614310observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hens90tpps3v5" - -Node: population_estimate_sex/E0/3e81af09-1cf9-deef-c351-253215e38503 -observationDate: 1954 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 80972704 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1954value=80972704observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/67brmewe7f0vf" - -Node: population_estimate_sex/E0/6e92e716-b07d-93b2-850c-3725f32578b1 -observationDate: 1955 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 82363638 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1955value=82363638observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/dp27yv00xgheh" - -Node: population_estimate_sex/E0/251e0d90-dde0-c5b7-7f9a-0a05b4f007a1 -observationDate: 1956 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 83779505 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1956value=83779505observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/66s734jrebm64" - -Node: population_estimate_sex/E0/99052cbf-2433-b855-cb20-881585037039 -observationDate: 1957 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 85248426 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1957value=85248426observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/1htrd73g6q616" - -Node: population_estimate_sex/E0/f7b91fbe-7548-6c44-1a91-afb156e6224f -observationDate: 1958 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 86605105 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1958value=86605105observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/kjlxfb8zfzl9b" - -Node: population_estimate_sex/E0/8729a75d-ea76-9b2a-f1ac-210422c670ae -observationDate: 1959 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 87995434 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1959value=87995434observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/t4nr3lqv47fx6" - -Node: population_estimate_sex/E0/ca0981c2-6dcc-1bd5-baae-d9858d40bb56 -observationDate: 1960 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 89319511 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1960value=89319511observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hm2npdlc28wr9" - -Node: population_estimate_sex/E0/da95d007-cbaf-0c28-e6ac-21fff43d3b79 -observationDate: 1961 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 90739919 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1961value=90739919observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/b8l22jj7mhk2f" - -Node: population_estimate_sex/E0/606dc605-e939-8708-57c7-4eff34924ee6 -observationDate: 1962 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 92066119 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1962value=92066119observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/p0lehlxwf364c" - -Node: population_estimate_sex/E0/cdbad43b-1846-c0d9-1885-62825015d298 -observationDate: 1963 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 93302933 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1963value=93302933observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/f8c4k5p2vy546" - -Node: population_estimate_sex/E0/c292b84e-d162-abc5-d9be-c0cc11b0ed39 -observationDate: 1964 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 94517752 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1964value=94517752observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/bxmflv452v904" - -Node: population_estimate_sex/E0/8cfe837c-fa8d-7324-e953-cba908ff66fc -observationDate: 1965 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 95608501 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1965value=95608501observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/b9h62m4n9jv66" - -Node: population_estimate_sex/E0/9c1be884-fc20-8557-1aea-0614414e6f7a -observationDate: 1966 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 96619711 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1966value=96619711observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/489zwdql07jjg" - -Node: population_estimate_sex/E0/90d6868d-0317-9e09-cfb0-cc81e1c3ce3e -observationDate: 1967 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 97563882 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1967value=97563882observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/dnp8xxn3p9g5h" - -Node: population_estimate_sex/E0/1a76d992-2723-d6af-0661-4cf685122dbe -observationDate: 1968 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 98426257 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1968value=98426257observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/zngld9w955vc6" - -Node: population_estimate_sex/E0/72c4fea0-b6e6-5937-bcad-a7e1d659d953 -observationDate: 1969 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 99286946 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1969value=99286946observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/88h525y65dxj7" - -Node: population_estimate_sex/E0/74cb2f2a-7999-416f-5412-dbaa2dd05dde -observationDate: 1970 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 100353876 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1970value=100353876observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/5mgpj11hw9ppc" - -Node: population_estimate_sex/E0/62d1bb31-6e9b-eccb-c3ba-b98c08821aa6 -observationDate: 1971 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 101567006 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1971value=101567006observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/fmhcmvkjzrzr6" - -Node: population_estimate_sex/E0/4c5a0d47-22f8-0794-e937-b511b2b1ba30 -observationDate: 1972 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 102590732 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1972value=102590732observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ln0lq9nt6jdd" - -Node: population_estimate_sex/E0/ee0a70b6-aa5c-e74c-5daa-64feb6b5c2ee -observationDate: 1973 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 103506451 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1973value=103506451observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/v9t7hr8xmz5j3" - -Node: population_estimate_sex/E0/39869871-a357-f0d8-9531-6f81ea84ed9c -observationDate: 1974 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 104391110 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1974value=104391110observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/jxd4l79dkgrq2" - -Node: population_estimate_sex/E0/6f1975d6-1031-02d4-eed3-7c5db1e7dc07 -observationDate: 1975 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 105365965 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1975value=105365965observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/lwpnqk5xdng12" - -Node: population_estimate_sex/E0/61b43097-9dc4-4182-2930-16963666dce0 -observationDate: 1976 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 106308604 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1976value=106308604observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/6z4k4w95pdlk9" - -Node: population_estimate_sex/E0/a0ca2065-4607-6be4-51c9-dd79c5a79fa7 -observationDate: 1977 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 107334548 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1977value=107334548observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/24d7exjd1epd5" - -Node: population_estimate_sex/E0/b3a94174-d318-f987-7e2b-747649c658ab -observationDate: 1978 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 108423580 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1978value=108423580observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/yw621p57zr9f8" - -Node: population_estimate_sex/E0/e86d8953-2015-2483-59ca-9f7102937888 -observationDate: 1979 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 109583961 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1979value=109583961observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9pg0q6dhdbeg2" - -Node: population_estimate_sex/E0/0d5f34d9-b44f-f116-52c9-b6eb9d88dd83 -observationDate: 1990 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 122162221 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1990value=122162221observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/y5q8wsg4yv28h" - -Node: population_estimate_sex/E0/23885a08-63ab-8eb5-548c-73e443e99cee -observationDate: 1991 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 123868531 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1991value=123868531observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/8nx98jgfb5fjh" - -Node: population_estimate_sex/E0/22969c6a-2b55-ce2d-3e64-5dd3bf9b47a1 -observationDate: 1992 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 125579972 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1992value=125579972observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/k8724d4krhz3d" - -Node: population_estimate_sex/E0/db34101d-37ce-5d74-5497-4b25bfccffea -observationDate: 1993 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 127265839 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1993value=127265839observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/00tr6mvyk8yg5" - -Node: population_estimate_sex/E0/0f6026be-c409-3da1-19ed-4c2125bff412 -observationDate: 1994 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 128869259 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1994value=128869259observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rjhkxdd2my2xc" - -Node: population_estimate_sex/E0/a65fe1d9-530a-c1de-ccb8-999770b17e33 -observationDate: 1995 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 130459431 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1995value=130459431observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/qwnqq0xdfb51" - -Node: population_estimate_sex/E0/61574ef7-c8ef-bcb8-2fd2-98d3d56fc104 -observationDate: 1996 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 132045951 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1996value=132045951observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ld1dej0l4qz45" - -Node: population_estimate_sex/E0/9cd45e10-1093-b8db-0202-d409616475db -observationDate: 1997 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 133702661 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1997value=133702661observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/gwzkzjdq5f9d6" - -Node: population_estimate_sex/E0/d3a028df-cafb-bd34-39cf-df9ea1b8b108 -observationDate: 1998 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 135355375 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1998value=135355375observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hywry53mwter1" - -Node: population_estimate_sex/E0/f8b3b43f-9592-e30a-0c26-85f04c8d0173 -observationDate: 1999 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 137022121 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1999value=137022121observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/x4mb9jfe0t5pg" - -Node: population_estimate_sex/E0/738a631f-27e2-dfd7-0ee1-990049660aee -observationDate: 2000 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 138443407 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2000value=138443407observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/tcwcv1lbdzdk9" - -Node: population_estimate_sex/E0/be666a54-5c28-49d1-f9fa-4f7af62c8ebe -observationDate: 2001 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 139891492 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2001value=139891492observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/whktyd603b2b1" - -Node: population_estimate_sex/E0/540556cc-75ae-1d56-2304-950c830cae7d -observationDate: 2002 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 141230559 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2002value=141230559observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/te04kfkrfknp2" - -Node: population_estimate_sex/E0/6a657fa2-395e-c928-315a-4155b25d381d -observationDate: 2003 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 142428897 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2003value=142428897observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/lghhhbqpx0v7f" - -Node: population_estimate_sex/E0/5a424b6c-cb03-1768-bf2e-0a2d0f4db56b -observationDate: 2004 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 143828012 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2004value=143828012observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/eqvxf5h6ew1k8" - -Node: population_estimate_sex/E0/7eccdb3e-79fe-665a-593e-2becbfa53241 -observationDate: 2005 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 145197078 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2005value=145197078observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/pn4ry0th7p0e3" - -Node: population_estimate_sex/E0/b003a9ad-8808-b2df-7e1f-49578ba7bb44 -observationDate: 2006 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 146647265 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2006value=146647265observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/e0wj7y0c1mvb1" - -Node: population_estimate_sex/E0/1ce93fd2-6b0d-f872-4880-3099b0e11da7 -observationDate: 2007 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 148064854 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2007value=148064854observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/q6envnxsvrhn4" - -Node: population_estimate_sex/E0/53a9e986-e58f-0fb7-1d11-e773d5ee33ab -observationDate: 2008 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 149489951 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2008value=149489951observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/4jqtrfd4539jd" - -Node: population_estimate_sex/E0/d07d2241-cfec-f9ba-1bb8-48834565185a -observationDate: 2009 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 150807454 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2009value=150807454observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mty0wqy67lch7" - -Node: population_estimate_sex/E0/e16e2c84-2368-6b37-c683-010a9f81b31b -observationDate: 2010 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 152077478 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2010value=152077478observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hyst2yvqq9vc3" - -Node: population_estimate_sex/E0/1ec4a5c3-bb63-4e16-f637-80aed0e22031 -observationDate: 2011 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 153212980 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2011value=153212980observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/qdv9ypzrmf335" - -Node: population_estimate_sex/E0/34522a00-faa8-29de-1cc2-849561cde764 -observationDate: 2012 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 154397027 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2012value=154397027observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/7ly8kd7vnmbv8" - -Node: population_estimate_sex/E0/8f1637de-49a2-82a2-cf2e-0751aa6a33b4 -observationDate: 2013 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 155514054 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2013value=155514054observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/t1qe78ztesq14" - -Node: population_estimate_sex/E0/dd25aa5e-542c-8f00-acf9-776b36a65f23 -observationDate: 2014 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 156695810 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2014value=156695810observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/fmr683p0jvsh4" - -Node: population_estimate_sex/E0/77f41236-cf11-1d90-da5c-76c234919c67 -observationDate: 2015 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 157906843 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2015value=157906843observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/5h40cr497vvrg" - -Node: population_estimate_sex/E0/1b5bf9ab-295c-69cb-f9f4-189d9960f0c4 -observationDate: 2016 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 159085693 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2016value=159085693observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/shv82m8k46zk7" - -Node: population_estimate_sex/E0/e3e3df93-2d3a-3264-bd6f-2a0c92450fed -observationDate: 2017 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 160113445 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2017value=160113445observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9q55cnrkqy0rc" - -Node: population_estimate_sex/E0/3a050ffc-a02f-4365-9233-a386fbcf0c6b -observationDate: 2018 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 160960513 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2018value=160960513observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/xbcg3f7e8tb16" - -Node: population_estimate_sex/E0/995ca758-ff45-7203-5d39-086eae7917b0 -observationDate: 2019 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 161692336 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2019value=161692336observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/88kmqq2prpz37" - -Node: population_estimate_sex/E0/4f552d13-7ab8-5cbf-768f-f7df36d069e0 -observationDate: 2020 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 162256202 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2020value=162256202observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/0bg96jykxe2k" - -Node: population_estimate_sex/E0/7c071083-0450-04f3-385a-79717437cb5a -observationDate: 1900 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 37227000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1900value=37227000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/m6887g7fczsgb" - -Node: population_estimate_sex/E0/992b3bfe-9bba-7874-9ec0-18184044104e -observationDate: 1901 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 37935000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1901value=37935000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9qle434ze6xp9" - -Node: population_estimate_sex/E0/a05d1833-7d77-9509-79ae-0d1f7fb4205b -observationDate: 1902 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 38680000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1902value=38680000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/7l9x789rkpthc" - -Node: population_estimate_sex/E0/e523484e-eeba-74f1-ef12-de24b23fe442 -observationDate: 1903 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 39370000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1903value=39370000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ch9l5j23h7538" - -Node: population_estimate_sex/E0/b3674e1b-4df1-6add-bac0-9e026304128f -observationDate: 1904 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 40077000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1904value=40077000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/g2qn1p4wxdczc" - -Node: population_estimate_sex/E0/fac62ce1-84b1-0174-1213-c7144f5caf1f -observationDate: 1905 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 40857000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1905value=40857000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/nxnkqz63dvry" - -Node: population_estimate_sex/E0/f473bc5a-7379-8a3e-eb31-fb1bd2103765 -observationDate: 1906 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 41609000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1906value=41609000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/j9c5275synpfb" - -Node: population_estimate_sex/E0/9af77098-e000-a2f5-89bb-ac0cb5cc4ab7 -observationDate: 1907 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 42326000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1907value=42326000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rmzykz6nrlbs5" - -Node: population_estimate_sex/E0/1ccfa267-94f5-2234-61fa-face27d84125 -observationDate: 1908 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 43116000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1908value=43116000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/7l849x6c5zw8" - -Node: population_estimate_sex/E0/e25bfebf-8af5-e08d-b343-ad735f497423 -observationDate: 1909 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 43945000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1909value=43945000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hed8x3m855p03" - -Node: population_estimate_sex/E0/4dad3f61-1218-8a44-b927-5c4091b34c80 -observationDate: 1910 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 44853000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1910value=44853000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/smbvzkm11mv25" - -Node: population_estimate_sex/E0/914cdda6-ce03-c981-84d2-02830933b1f4 -observationDate: 1911 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 45573000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1911value=45573000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/kd3xj4n0b6ry" - -Node: population_estimate_sex/E0/026ffa47-b4a1-ec85-1c7a-9d044a158b81 -observationDate: 1912 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 46310000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1912value=46310000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9148s6ed6kss5" - -Node: population_estimate_sex/E0/be47a97a-d1a6-6f0e-8d28-daf9d4b29e72 -observationDate: 1913 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 47268000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1913value=47268000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/zs1gvhs9wr4mg" - -Node: population_estimate_sex/E0/8d3947af-f9e4-cb71-0573-3efb1c0a9d73 -observationDate: 1914 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 48228000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1914value=48228000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/xne6z1n38lfe1" - -Node: population_estimate_sex/E0/b2db9ce2-415a-df4c-288a-042ada0da245 -observationDate: 1915 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 48973000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1915value=48973000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/80zmqjdb0thv9" - -Node: population_estimate_sex/E0/654f1eb5-27f5-234c-b72b-02350c644ff0 -observationDate: 1916 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 49727000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1916value=49727000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/bkjw4j222y8fg" - -Node: population_estimate_sex/E0/ceed1e77-e87d-ddc4-81b7-bdcf1e44ebe5 -observationDate: 1917 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 50480000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1917value=50480000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mymh73cjz8eld" - -Node: population_estimate_sex/E0/49cb733b-c84f-da69-f4bf-47369447cc31 -observationDate: 1918 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 51234000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1918value=51234000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ethwsj962nzr4" - -Node: population_estimate_sex/E0/c034d7af-f2f9-ed83-8783-b932e120b9fe -observationDate: 1919 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 51411000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1919value=51411000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/t0djyrwf09xlb" - -Node: population_estimate_sex/E0/be260719-116a-283c-4e7e-3f7d13bfa407 -observationDate: 1920 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 52170000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1920value=52170000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/j4xzchxq7lp25" - -Node: population_estimate_sex/E0/b303917e-0d9e-8d58-e0e2-4d7d1227dbe6 -observationDate: 1921 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 53246000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1921value=53246000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/3j75jnnv7ggk4" - -Node: population_estimate_sex/E0/037bdba1-8d40-be5f-dde4-733bfb93d3e5 -observationDate: 1922 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 54163000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1922value=54163000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/5n9pe49w378mc" - -Node: population_estimate_sex/E0/57c4bb56-75e5-8578-e106-6e06e08d9028 -observationDate: 1923 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 55086000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1923value=55086000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/7rwc9sdc1wj89" - -Node: population_estimate_sex/E0/caf0d8af-8c49-3365-35a9-9f8c467dcf04 -observationDate: 1924 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 56124000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1924value=56124000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/f0vy5tf24cxwd" - -Node: population_estimate_sex/E0/112b1af2-2088-0d6a-dac8-6f4b15e1bbb0 -observationDate: 1925 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 57016000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1925value=57016000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mq5f28fwdt0t4" - -Node: population_estimate_sex/E0/14b084da-6cce-6a7d-0cbb-30f96ae570a7 -observationDate: 1926 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 57809000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1926value=57809000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mhhpej6e045v6" - -Node: population_estimate_sex/E0/e5d09c47-0dd0-ea41-0071-df498a601393 -observationDate: 1927 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 58638000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1927value=58638000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/e586lp49gmgd3" - -Node: population_estimate_sex/E0/414eb024-90d8-33d8-f20f-a2a8115b3cb1 -observationDate: 1928 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 59408000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1928value=59408000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ezdm84226dbqh" - -Node: population_estimate_sex/E0/c99f47db-d3f5-b3ad-814c-e1cd2a14e8ca -observationDate: 1929 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 60087000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1929value=60087000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/dkgen02gpnhb6" - -Node: population_estimate_sex/E0/41a78d6c-f989-d345-105f-f05b152ea332 -observationDate: 1930 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 60780224 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1930value=60780224observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/qvvpd51sxwmrb" - -Node: population_estimate_sex/E0/3de9b86b-d05b-fb02-3488-66b6114876fd -observationDate: 1931 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 61314145 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1931value=61314145observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/zl8hccswrp72b" - -Node: population_estimate_sex/E0/dd7da605-cb4b-45ab-fccf-588f24a38fc0 -observationDate: 1932 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 61770334 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1932value=61770334observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/0ksrwd9pxdfn7" - -Node: population_estimate_sex/E0/c7ed9777-3538-3760-134f-db71c5aadabd -observationDate: 1933 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 62194754 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1933value=62194754observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/n8zq5t4qwy6d9" - -Node: population_estimate_sex/E0/f76a70a8-c5f1-8b89-b6b0-7090a15382a6 -observationDate: 1934 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 62647577 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1934value=62647577observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/de69h0dw89vc9" - -Node: population_estimate_sex/E0/d9f4038e-9c97-f716-97b7-192e051a1cae -observationDate: 1935 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 63140344 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1935value=63140344observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/5t0qlx0r22eec" - -Node: population_estimate_sex/E0/926f603f-e233-816e-2d23-4e300f8ffa8f -observationDate: 1936 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 63593797 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1936value=63593797observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/4z9q5rwjf0xd9" - -Node: population_estimate_sex/E0/14cba252-c624-0d07-a547-14595016eedf -observationDate: 1937 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 64035032 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1937value=64035032observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/08zp0rtjbst6c" - -Node: population_estimate_sex/E0/880c5177-79e4-02bf-0f97-d3d4e7b66224 -observationDate: 1938 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 64589578 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1938value=64589578observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ec3cz8vn7d92" - -Node: population_estimate_sex/E0/1695dde7-a36d-bc51-a883-411ca3fd1969 -observationDate: 1939 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 65166379 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1939value=65166379observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/d2pfg2zjhgtd8" - -Node: population_estimate_sex/E0/c00aafed-e401-d438-1f11-bad313b748e5 -observationDate: 1940 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 65770083 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1940value=65770083observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/f5fymrpwwh30h" - -Node: population_estimate_sex/E0/9cc941be-ce4f-d592-6c07-863a8c739937 -observationDate: 1941 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 66482338 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1941value=66482338observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/kss8yjk8lq8pc" - -Node: population_estimate_sex/E0/e583c6af-33d8-8ea9-0e11-5c5a10599933 -observationDate: 1942 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 67262824 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1942value=67262824observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/fkdv7k9hz89vc" - -Node: population_estimate_sex/E0/a185d895-234d-b20e-fab1-c4bf46af3011 -observationDate: 1943 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 68193612 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1943value=68193612observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/xk6wtj0stwkt9" - -Node: population_estimate_sex/E0/21bef9a6-cb7d-728a-95b1-cca97943710d -observationDate: 1944 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 69019626 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1944value=69019626observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/cmpgxmrwprl89" - -Node: population_estimate_sex/E0/64ec3afd-51e3-21e9-3ca1-759d4aa221bd -observationDate: 1945 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 69893092 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1945value=69893092observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/t4y9drt9h12tb" - -Node: population_estimate_sex/E0/8a17ad59-9971-62b3-9b2d-dc428a695df1 -observationDate: 1946 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 70757395 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1946value=70757395observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/6wf9107kjygp3" - -Node: population_estimate_sex/E0/4d530955-8f8d-14c2-6648-9217c421bdb0 -observationDate: 1947 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 72180179 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1947value=72180179observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ss4tfxxsfl2x7" - -Node: population_estimate_sex/E0/2473537b-5fe2-6285-dc87-71d4cbc1fb02 -observationDate: 1948 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 73501618 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1948value=73501618observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/l8ttjnh1763cc" - -Node: population_estimate_sex/E0/525d00dc-b7ec-59ae-037d-e92fcc839b67 -observationDate: 1949 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 74852695 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1949value=74852695observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/8p6mwebvhb8q8" - -Node: population_estimate_sex/E0/d8641aa6-85b2-f2ad-80af-63e28d48f4ea -observationDate: 1950 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 76422405 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1950value=76422405observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/82vdpk3bzyt29" - -Node: population_estimate_sex/E0/9977efa4-b465-f53e-8e0d-2527195ecebe -observationDate: 1951 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 77776626 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1951value=77776626observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/36pl4wkqzmjt7" - -Node: population_estimate_sex/E0/4b48bac2-3f0a-5610-d012-04901fed62bb -observationDate: 1952 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 79180550 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1952value=79180550observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rchdznsy35c66" - -Node: population_estimate_sex/E0/38b2440f-0ef9-3efb-fd3d-f9f01f0a34a4 -observationDate: 1953 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 80569882 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1953value=80569882observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/kl32yh1v767m4" - -Node: population_estimate_sex/E0/352d0ea3-7346-9df9-c45e-dfee936af16a -observationDate: 1954 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 82053150 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1954value=82053150observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ydp5r02ypkp29" - -Node: population_estimate_sex/E0/747378de-0def-7b8a-0055-90ec52ffcd88 -observationDate: 1955 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 83567564 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1955value=83567564observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/y0gn7dst025l" - -Node: population_estimate_sex/E0/a92ed869-60db-025d-3ec6-fdf093d3c1cf -observationDate: 1956 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 85123526 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1956value=85123526observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/f34pq1mleg7s" - -Node: population_estimate_sex/E0/0b44b71d-63f5-a440-e155-6c201372c8c9 -observationDate: 1957 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 86735704 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1957value=86735704observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/gwejcbg7zvht6" - -Node: population_estimate_sex/E0/61a9d2a5-da1c-874b-a08c-d6e5f40b916e -observationDate: 1958 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 88276799 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1958value=88276799observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/1dvjgebjebx38" - -Node: population_estimate_sex/E0/ad715747-0f9e-6253-2ff6-7691aca278e3 -observationDate: 1959 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 89834194 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1959value=89834194observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mb06l837v0hn4" - -Node: population_estimate_sex/E0/6ce6533b-dce0-fe96-5f55-99714f6fced2 -observationDate: 1960 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 91351647 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1960value=91351647observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/612tygmk488f" - -Node: population_estimate_sex/E0/07fc9e3d-3400-0f1d-db92-355df9301134 -observationDate: 1961 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 92951562 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1961value=92951562observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9rn9gh3x4q1xg" - -Node: population_estimate_sex/E0/355c7c3d-34f9-93d9-6d61-edd3cea81c2e -observationDate: 1962 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 94471618 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1962value=94471618observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/bgwdcst4736g6" - -Node: population_estimate_sex/E0/eba21637-258d-6fd9-5308-a1c342415eaf -observationDate: 1963 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 95938865 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1963value=95938865observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/t6ckk5efd6m45" - -Node: population_estimate_sex/E0/63cefb44-e753-0b0e-50f4-5f0ada322933 -observationDate: 1964 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 97371039 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1964value=97371039observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/5qqyrmlb4bk1d" - -Node: population_estimate_sex/E0/da257e70-c895-85cf-0417-d90090d5c6eb -observationDate: 1965 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 98694462 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1965value=98694462observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/7ngqnp8hcql86" - -Node: population_estimate_sex/E0/10d92064-16aa-633c-b64e-ff34dae02010 -observationDate: 1966 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 99940627 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1966value=99940627observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/1xbbnj5qpb6v1" - -Node: population_estimate_sex/E0/3ad902a7-8efd-9854-39ea-95dfc1f318cc -observationDate: 1967 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 101148174 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1967value=101148174observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/dg241dsqwrz06" - -Node: population_estimate_sex/E0/f46d77cf-b256-916c-346a-7c75bbdfe3d4 -observationDate: 1968 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 102279795 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1968value=102279795observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/1vqzzw6ccp6b3" - -Node: population_estimate_sex/E0/57c989fd-e80d-3dc2-61be-76b502b477c2 -observationDate: 1969 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 103390000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1969value=103390000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/qldr1c47wnz25" - -Node: population_estimate_sex/E0/3d4c4c11-acfe-5a0a-c5b4-edb49b31da90 -observationDate: 1970 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 104698298 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1970value=104698298observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/xgp6rbp81zhk2" - -Node: population_estimate_sex/E0/fe16120d-b748-800b-20af-adc6491ab4b6 -observationDate: 1971 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 106093671 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1971value=106093671observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/yrscj9kp652h5" - -Node: population_estimate_sex/E0/843b3774-3d7b-95e6-ee10-bbbf13ef596a -observationDate: 1972 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 107305289 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1972value=107305289observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9b5ype24wt928" - -Node: population_estimate_sex/E0/6454c273-fbe7-83bb-eec9-4d25e46927db -observationDate: 1973 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 108402337 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1973value=108402337observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/emhxpgdwv71c3" - -Node: population_estimate_sex/E0/d58d4c36-7462-eeda-46f1-c17f63e00ae0 -observationDate: 1974 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 109462818 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1974value=109462818observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/2ctr9ebnfvr81" - -Node: population_estimate_sex/E0/2388bbb0-bc16-55b5-774b-45f188341bbc -observationDate: 1975 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 110607234 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1975value=110607234observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/t33jgh1byhx7b" - -Node: population_estimate_sex/E0/7ddbda2e-ee9f-9897-7344-bba9963fa904 -observationDate: 1976 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 111726560 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1976value=111726560observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/79pnl907lr2d4" - -Node: population_estimate_sex/E0/953fa438-e41e-aa07-6118-68538d3c064e -observationDate: 1977 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 112904877 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1977value=112904877observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rhr5q7yxwr2z1" - -Node: population_estimate_sex/E0/5921de18-7dad-75ef-b69b-212281c2d389 -observationDate: 1978 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 114160965 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1978value=114160965observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/jvbmrhs3vskk5" - -Node: population_estimate_sex/E0/b6a2e158-6144-41c6-ed4c-51631ca9625d -observationDate: 1979 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 115471526 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1979value=115471526observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/6jbpgctvenkx4" - -Node: population_estimate_sex/E0/a81ef154-fdba-5adf-62a5-b2421cab181f -observationDate: 1990 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 127969673 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1990value=127969673observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rxd5chwwv7d73" - -Node: population_estimate_sex/E0/962f293f-28bf-6e74-2e59-44e969028e06 -observationDate: 1991 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 129623972 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1991value=129623972observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/bfscw6msgddc1" - -Node: population_estimate_sex/E0/b27f7013-5746-f734-5b3f-71ec92798b35 -observationDate: 1992 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 131314217 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1992value=131314217observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rd1zr08nbm8ld" - -Node: population_estimate_sex/E0/6d49b1c6-6790-5c56-854d-d87b708c50f8 -observationDate: 1993 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 132989513 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1993value=132989513observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/16jg4w68g2f8h" - -Node: population_estimate_sex/E0/94e1a0c4-5de6-e878-29f6-a3118cc578e3 -observationDate: 1994 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 134566414 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1994value=134566414observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hlfd8emf03sm8" - -Node: population_estimate_sex/E0/be286f67-c7fb-3a59-cf88-9ba705638a1b -observationDate: 1995 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 136097660 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1995value=136097660observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mdww0kbfzs1p4" - -Node: population_estimate_sex/E0/f1878372-6b0f-d2fc-5d44-8ef735526c91 -observationDate: 1996 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 137621440 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1996value=137621440observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/2hhbv1nmq3nqd" - -Node: population_estimate_sex/E0/36a84490-74db-359f-2f44-f7a57c1fd0de -observationDate: 1997 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 139209099 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1997value=139209099observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/kh5b4cm1p0fsf" - -Node: population_estimate_sex/E0/028614da-9b15-cdb5-7fff-578be9bad6b5 -observationDate: 1998 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 140759913 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1998value=140759913observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/7fm03x2bwxt1b" - -Node: population_estimate_sex/E0/d9714764-0b2b-25fb-fcd0-078b88eca7e7 -observationDate: 1999 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 142272592 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1999value=142272592observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/gg27pst4xb3l9" - -Node: population_estimate_sex/E0/623e4913-fcbd-7865-668d-3fb54228ceb8 -observationDate: 2000 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 143719004 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2000value=143719004observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/z9ywk9gfgsyy4" - -Node: population_estimate_sex/E0/b4fc979a-fcdf-101f-9e15-5ecd923b4232 -observationDate: 2001 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 145077463 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2001value=145077463observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/s2s4cyggkqyd8" - -Node: population_estimate_sex/E0/e97dad0a-0b89-8e60-e106-a6a9b64634f8 -observationDate: 2002 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 146394634 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2002value=146394634observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/yespndlhd92yc" - -Node: population_estimate_sex/E0/f25f80c5-f0ed-7017-7e5f-21df9f169a07 -observationDate: 2003 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 147679036 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2003value=147679036observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/1hztdh4rb2vrg" - -Node: population_estimate_sex/E0/35183462-7311-f2c9-3184-6831e3966dc8 -observationDate: 2004 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 148977286 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2004value=148977286observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/4n9bxl9vlvryg" - -Node: population_estimate_sex/E0/b96193b7-d7af-f7af-b0b8-8de97b8fc11c -observationDate: 2005 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 150319521 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2005value=150319521observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/0v2b35t6mrlc8" - -Node: population_estimate_sex/E0/10a9c01f-3685-bcc5-79ab-57894a0ce6f6 -observationDate: 2006 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 151732647 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2006value=151732647observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/3k1vvf9p95j48" - -Node: population_estimate_sex/E0/54a11b3f-8efc-f876-94d0-0cf5070e3ada -observationDate: 2007 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 153166353 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2007value=153166353observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ldbql7s2meh68" - -Node: population_estimate_sex/E0/4769e20c-d302-d3b4-7673-2af32d19f825 -observationDate: 2008 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 154604015 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2008value=154604015observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/3r1jr1f9ejfrc" - -Node: population_estimate_sex/E0/c59d75c2-aef4-1795-60de-559f3086d83e -observationDate: 2009 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 155964075 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2009value=155964075observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ervnbftn3xt2g" - -Node: population_estimate_sex/E0/abfa4914-435c-e7f7-22f4-2a2559d18af9 -observationDate: 2010 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 157249665 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2010value=157249665observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/bwhf2ncer37tb" - -Node: population_estimate_sex/E0/a3530c46-7885-d674-db54-85aa7cb67a93 -observationDate: 2011 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 158370501 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2011value=158370501observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/b9hby8c604shf" - -Node: population_estimate_sex/E0/f0d765f9-899f-3db0-eafc-464bcf1b090e -observationDate: 2012 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 159480635 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2012value=159480635observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/sl0bbnm07b291" - -Node: population_estimate_sex/E0/7991bbec-cfea-c952-6cb2-bcc01f45b531 -observationDate: 2013 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 160545893 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2013value=160545893observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/61lw2cetmhyfb" - -Node: population_estimate_sex/E0/fad41f1d-2797-f4de-d0d4-694ad80a0104 -observationDate: 2014 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 161690519 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2014value=161690519observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/y1rlm329ymg9b" - -Node: population_estimate_sex/E0/08483e6b-b08d-6bc9-28f7-1e53ad4b85b4 -observationDate: 2015 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 162832151 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2015value=162832151observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/njpxntxqs8z5" - -Node: population_estimate_sex/E0/0dfde911-3527-339a-1234-b75b577708ca -observationDate: 2016 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 163986062 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2016value=163986062observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/f3y0dxwevvrbd" - -Node: population_estimate_sex/E0/d47d0793-c13b-1354-c59a-6b100c64ffe6 -observationDate: 2017 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 165008683 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2017value=165008683observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/qxebdl1k0mplg" - -Node: population_estimate_sex/E0/e5869011-44b6-ff2e-7f9a-a46fe18000b2 -observationDate: 2018 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 165877686 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2018value=165877686observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/000djxym35y76" - -Node: population_estimate_sex/E0/c164d3fd-b0f0-7db9-2c27-afe8df25f7a1 -observationDate: 2019 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 166637617 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2019value=166637617observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ddqvb8ct7pve9" - -Node: population_estimate_sex/E0/59af57c4-4efb-d4c9-b9ef-455407f350a5 -observationDate: 2020 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 167227921 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2020value=167227921observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/nb0dqjfhm21g1" - diff --git a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv deleted file mode 100644 index 92c6baf467..0000000000 --- a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv +++ /dev/null @@ -1,223 +0,0 @@ -Year,geo_ID,Measurement_Method,SV,Observation -1900,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,38867000 -1901,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,39649000 -1902,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,40483000 -1903,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,41262000 -1904,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,42089000 -1905,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,42965000 -1906,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,43841000 -1907,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,44682000 -1908,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,45594000 -1909,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,46545000 -1910,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,47554000 -1911,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,48290000 -1912,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,49025000 -1913,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,49957000 -1914,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,50883000 -1915,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,51573000 -1916,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,52234000 -1917,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,52788000 -1918,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,51974000 -1919,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,53103000 -1920,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,54291000 -1921,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,55292000 -1922,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,55886000 -1923,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,56861000 -1924,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,57985000 -1925,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,58813000 -1926,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,59588000 -1927,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,60397000 -1928,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,61101000 -1929,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,61680000 -1930,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,62296517 -1931,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,62725503 -1932,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,63070137 -1933,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,63384009 -1934,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,63726196 -1935,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,64109888 -1936,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,64459383 -1937,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,64789797 -1938,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,65235361 -1939,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,65713339 -1940,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,66352363 -1941,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,66920133 -1942,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,67596729 -1943,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,68545741 -1944,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,69377719 -1945,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,70035073 -1946,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,70631171 -1947,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,71945892 -1948,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,73129684 -1949,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,74335435 -1950,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,75849012 -1951,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,77101263 -1952,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,78372190 -1953,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,79614310 -1954,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,80972704 -1955,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,82363638 -1956,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,83779505 -1957,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,85248426 -1958,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,86605105 -1959,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,87995434 -1960,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,89319511 -1961,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,90739919 -1962,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,92066119 -1963,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,93302933 -1964,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,94517752 -1965,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,95608501 -1966,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,96619711 -1967,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,97563882 -1968,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,98426257 -1969,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,99286946 -1970,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,100353876 -1971,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,101567006 -1972,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,102590732 -1973,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,103506451 -1974,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,104391110 -1975,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,105365965 -1976,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,106308604 -1977,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,107334548 -1978,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,108423580 -1979,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,109583961 -1990,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,122162221 -1991,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,123868531 -1992,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,125579972 -1993,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,127265839 -1994,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,128869259 -1995,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,130459431 -1996,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,132045951 -1997,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,133702661 -1998,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,135355375 -1999,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,137022121 -2000,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,138443407 -2001,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,139891492 -2002,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,141230559 -2003,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,142428897 -2004,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,143828012 -2005,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,145197078 -2006,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,146647265 -2007,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,148064854 -2008,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,149489951 -2009,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,150807454 -2010,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,152077478 -2011,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,153212980 -2012,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,154397027 -2013,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,155514054 -2014,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,156695810 -2015,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,157906843 -2016,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,159085693 -2017,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,160113445 -2018,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,160960513 -2019,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,161692336 -2020,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,162256202 -1900,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,37227000 -1901,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,37935000 -1902,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,38680000 -1903,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,39370000 -1904,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,40077000 -1905,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,40857000 -1906,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,41609000 -1907,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,42326000 -1908,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,43116000 -1909,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,43945000 -1910,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,44853000 -1911,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,45573000 -1912,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,46310000 -1913,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,47268000 -1914,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,48228000 -1915,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,48973000 -1916,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,49727000 -1917,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,50480000 -1918,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,51234000 -1919,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,51411000 -1920,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,52170000 -1921,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,53246000 -1922,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,54163000 -1923,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,55086000 -1924,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,56124000 -1925,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,57016000 -1926,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,57809000 -1927,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,58638000 -1928,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,59408000 -1929,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,60087000 -1930,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,60780224 -1931,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,61314145 -1932,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,61770334 -1933,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,62194754 -1934,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,62647577 -1935,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,63140344 -1936,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,63593797 -1937,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,64035032 -1938,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,64589578 -1939,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,65166379 -1940,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,65770083 -1941,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,66482338 -1942,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,67262824 -1943,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,68193612 -1944,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,69019626 -1945,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,69893092 -1946,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,70757395 -1947,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,72180179 -1948,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,73501618 -1949,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,74852695 -1950,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,76422405 -1951,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,77776626 -1952,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,79180550 -1953,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,80569882 -1954,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,82053150 -1955,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,83567564 -1956,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,85123526 -1957,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,86735704 -1958,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,88276799 -1959,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,89834194 -1960,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,91351647 -1961,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,92951562 -1962,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,94471618 -1963,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,95938865 -1964,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,97371039 -1965,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,98694462 -1966,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,99940627 -1967,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,101148174 -1968,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,102279795 -1969,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,103390000 -1970,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,104698298 -1971,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,106093671 -1972,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,107305289 -1973,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,108402337 -1974,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,109462818 -1975,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,110607234 -1976,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,111726560 -1977,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,112904877 -1978,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,114160965 -1979,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,115471526 -1990,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,127969673 -1991,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,129623972 -1992,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,131314217 -1993,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,132989513 -1994,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,134566414 -1995,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,136097660 -1996,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,137621440 -1997,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,139209099 -1998,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,140759913 -1999,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,142272592 -2000,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,143719004 -2001,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,145077463 -2002,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,146394634 -2003,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,147679036 -2004,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,148977286 -2005,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,150319521 -2006,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,151732647 -2007,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,153166353 -2008,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,154604015 -2009,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,155964075 -2010,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,157249665 -2011,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,158370501 -2012,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,159480635 -2013,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,160545893 -2014,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,161690519 -2015,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,162832151 -2016,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,163986062 -2017,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,165008683 -2018,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,165877686 -2019,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,166637617 -2020,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,167227921 diff --git a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf deleted file mode 100644 index 70fd7bb0dc..0000000000 --- a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf +++ /dev/null @@ -1,13 +0,0 @@ -Node: dcid:Count_Person_Female -typeOf: dcs:StatisticalVariable -populationType: dcs:Person -gender: dcs:Female -statType: dcs:measuredValue -measuredProperty: dcs:count - -Node: dcid:Count_Person_Male -typeOf: dcs:StatisticalVariable -populationType: dcs:Person -gender: dcs:Male -statType: dcs:measuredValue -measuredProperty: dcs:count \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf deleted file mode 100644 index 34bc31744a..0000000000 --- a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf +++ /dev/null @@ -1,8 +0,0 @@ -Node: E:population_estimate_sex->E0 -typeOf: dcs:StatVarObservation -variableMeasured: C:population_estimate_sex->SV -measurementMethod: C:population_estimate_sex->Measurement_Method -observationAbout: C:population_estimate_sex->geo_ID -observationDate: C:population_estimate_sex->Year -observationPeriod: "P1Y" -value: C:population_estimate_sex->Observation \ No newline at end of file From a94722385f3a52f047ee837646b083d7a965ffe4 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Mon, 13 Jul 2026 11:30:16 +0000 Subject: [PATCH 4/7] revert changes to .gitignore --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3a0ebfcab1..a05b550de3 100644 --- a/.gitignore +++ b/.gitignore @@ -25,4 +25,3 @@ import-automation/executor/config_override.json .venv/ -output/ From 69cc3f877fb43c15bd0fe9bce8a5409876512b27 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Mon, 13 Jul 2026 11:31:43 +0000 Subject: [PATCH 5/7] added goldns --- .../pep/us_pep_sex/golden_data/golden_summary_report.csv | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 scripts/us_census/pep/us_pep_sex/golden_data/golden_summary_report.csv diff --git a/scripts/us_census/pep/us_pep_sex/golden_data/golden_summary_report.csv b/scripts/us_census/pep/us_pep_sex/golden_data/golden_summary_report.csv new file mode 100644 index 0000000000..95ec5962c3 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/golden_data/golden_summary_report.csv @@ -0,0 +1,3 @@ +"observationPeriods","MinDate","MeasurementMethods","Units","StatVar","NumPlaces","ScalingFactors" +"[P1Y]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate]","[]","Count_Person_Female","1","[]" +"[P1Y]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate]","[]","Count_Person_Male","1","[]" From 75b7a374021f56d96f85467fea04c46076af94f2 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Mon, 13 Jul 2026 11:33:43 +0000 Subject: [PATCH 6/7] added goldns --- .../golden_summary_report_national_after.csv | 23 ++++++++ .../golden_summary_report_national_before.csv | 11 ++++ .../golden_summary_report_state_after.csv | 23 ++++++++ .../golden_summary_report_state_before.csv | 9 +++ .../pep/us_pep_sexrace/manifest.json | 3 +- .../pep/us_pep_sexrace/preprocess.py | 57 ++++++++++++------- .../pep/us_pep_sexrace/validation_config.json | 47 +++++++++++++++ 7 files changed, 152 insertions(+), 21 deletions(-) create mode 100644 scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_after.csv create mode 100644 scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_before.csv create mode 100644 scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_after.csv create mode 100644 scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_before.csv create mode 100644 scripts/us_census/pep/us_pep_sexrace/validation_config.json diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_after.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_after.csv new file mode 100644 index 0000000000..9386de7793 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_after.csv @@ -0,0 +1,23 @@ +"MeasurementMethods","NumPlaces","ScalingFactors","observationPeriods","Units","MinDate","StatVar" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_AsianAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_BlackOrAfricanAmericanAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_TwoOrMoreRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_AsianAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_TwoOrMoreRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_AmericanIndianAndAlaskaNativeAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_WhiteAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_AmericanIndianAndAlaskaNativeAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_BlackOrAfricanAmericanAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_WhiteAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces" diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_before.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_before.csv new file mode 100644 index 0000000000..965c1402ce --- /dev/null +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_before.csv @@ -0,0 +1,11 @@ +"Units","NumPlaces","observationPeriods","ScalingFactors","MinDate","MeasurementMethods","StatVar" +"[]","1","[P1Y]","[]","1981","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Male_AsianOrPacificIslander" +"[]","1","[P1Y]","[]","1981","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Male_AmericanIndianAndAlaskaNativeAlone" +"[]","1","[P1Y]","[]","1981","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Female_AmericanIndianAndAlaskaNativeAlone" +"[]","1","[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Male_WhiteAlone" +"[]","1","[P1Y]","[]","1960","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Female_BlackOrAfricanAmericanAlone" +"[]","1","[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_NonWhite" +"[]","1","[P1Y]","[]","1960","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Male_BlackOrAfricanAmericanAlone" +"[]","1","[P1Y]","[]","1981","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Female_AsianOrPacificIslander" +"[]","1","[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Female_WhiteAlone" +"[]","1","[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_NonWhite" diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_after.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_after.csv new file mode 100644 index 0000000000..92df5957ae --- /dev/null +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_after.csv @@ -0,0 +1,23 @@ +"StatVar","Units","observationPeriods","MinDate","ScalingFactors","MeasurementMethods","NumPlaces" +"Count_Person_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Female_AsianAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Female_BlackOrAfricanAmericanAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Male_TwoOrMoreRaces","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Male_AsianAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Female_TwoOrMoreRaces","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Male_AmericanIndianAndAlaskaNativeAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Male_WhiteAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Female_AmericanIndianAndAlaskaNativeAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Male_BlackOrAfricanAmericanAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Female_WhiteAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_before.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_before.csv new file mode 100644 index 0000000000..a52f73701f --- /dev/null +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_before.csv @@ -0,0 +1,9 @@ +"ScalingFactors","observationPeriods","MeasurementMethods","StatVar","NumPlaces","Units","MinDate" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_AsianOrPacificIslander","3192","[]","1981" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_AmericanIndianAndAlaskaNativeAlone","3192","[]","1981" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_AmericanIndianAndAlaskaNativeAlone","3192","[]","1981" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_WhiteAlone","3212","[]","1970" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_BlackOrAfricanAmericanAlone","3212","[]","1970" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_BlackOrAfricanAmericanAlone","3212","[]","1970" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_AsianOrPacificIslander","3192","[]","1981" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_WhiteAlone","3212","[]","1970" diff --git a/scripts/us_census/pep/us_pep_sexrace/manifest.json b/scripts/us_census/pep/us_pep_sexrace/manifest.json index 52be2bb440..d169819bbb 100644 --- a/scripts/us_census/pep/us_pep_sexrace/manifest.json +++ b/scripts/us_census/pep/us_pep_sexrace/manifest.json @@ -31,7 +31,8 @@ "source_files": [ "input_files/*" ], - "cron_schedule": "0 10 * * 1" + "cron_schedule": "0 10 * * 1", + "validation_config_file": "validation_config.json" } ] } \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sexrace/preprocess.py b/scripts/us_census/pep/us_pep_sexrace/preprocess.py index 0bdbfc82ef..63244ed243 100644 --- a/scripts/us_census/pep/us_pep_sexrace/preprocess.py +++ b/scripts/us_census/pep/us_pep_sexrace/preprocess.py @@ -123,6 +123,10 @@ def downloadFiles(config_files: list, test=False): test=False ''' flag = None + if test: + shutil.rmtree(os.path.join(_MODULE_DIR, _OUTPUTFINAL), ignore_errors=True) + shutil.rmtree(os.path.join(_MODULE_DIR, _OUTPUTINTERMEDIATE), ignore_errors=True) + shutil.rmtree(os.path.join(_MODULE_DIR, __INPUTFILES), ignore_errors=True) os.system("mkdir -p " + os.path.join(_MODULE_DIR, _OUTPUTFINAL)) os.system("mkdir -p " + os.path.join(_MODULE_DIR, _OUTPUTINTERMEDIATE)) os.system("mkdir -p " + os.path.join(_MODULE_DIR, __INPUTFILES)) @@ -172,26 +176,27 @@ def downloadFiles(config_files: list, test=False): except Exception as e: logging.error(f"Failed to process {config_file}: {e}") - global _FILES_TO_DOWNLOAD - for file in _FILES_TO_DOWNLOAD: - file_name_to_save = None - url = file['download_path'] - #Calling 2023 onwards methods - try: - process_national_2020_2029(url) - except Exception as e: - logging.error( - f"Failed to process national 2020-2029 for {url}: {e}") - try: - process_county_2020_2029(url) - except Exception as e: - logging.error( - f"Failed to process county 2020-2029 for {url}: {e}") - try: - process_state_2020_2029(url) - except Exception as e: - logging.error( - f"Failed to process state 2020-2029 for {url}: {e}") + if not test: + global _FILES_TO_DOWNLOAD + for file in _FILES_TO_DOWNLOAD: + file_name_to_save = None + url = file['download_path'] + #Calling 2023 onwards methods + try: + process_national_2020_2029(url) + except Exception as e: + logging.error( + f"Failed to process national 2020-2029 for {url}: {e}") + try: + process_county_2020_2029(url) + except Exception as e: + logging.error( + f"Failed to process county 2020-2029 for {url}: {e}") + try: + process_state_2020_2029(url) + except Exception as e: + logging.error( + f"Failed to process state 2020-2029 for {url}: {e}") except Exception as e: logging.fatal(f"There is an error while downloading the files {e}") @@ -225,6 +230,9 @@ def process(config_files: list, test=False): "nationals_result_1900_1959.csv", "nationals_result_1960_1979.csv", "nationals_result_1980_1990.csv", "nationals_result_1990_2000.csv" ] + national_before_2000 = [ + f for f in national_before_2000 if os.path.exists(os.path.join(_INPUT_FILE_PATH, f)) + ] # list of state and county output files before year 2000 state_county_before_2000 = [ @@ -232,6 +240,9 @@ def process(config_files: list, test=False): "state_result_1990_2000.csv", "county_result_1970_1979.csv", "county_result_1980_1989.csv", "county_result_1990_2000.csv" ] + state_county_before_2000 = [ + f for f in state_county_before_2000 if os.path.exists(os.path.join(_INPUT_FILE_PATH, f)) + ] # list of state and county output files before after 2000 state_county_after_2000 = [ @@ -240,12 +251,18 @@ def process(config_files: list, test=False): "state_result_2020_2022.csv", "state_result_2020_2029.csv", "county_result_2020_2022.csv", "county_result_2020_2029.csv" ] + state_county_after_2000 = [ + f for f in state_county_after_2000 if os.path.exists(os.path.join(_INPUT_FILE_PATH, f)) + ] # list of national output files after year 2000 national_after_2000 = [ "nationals_result_2000_2010.csv", "nationals_result_2010_2020.csv", "nationals_result_2020_2022.csv", "nationals_result_2020_2029.csv" ] + national_after_2000 = [ + f for f in national_after_2000 if os.path.exists(os.path.join(_INPUT_FILE_PATH, f)) + ] output_files_names = { Outputfiles.NationalBefore2000.value: national_before_2000, diff --git a/scripts/us_census/pep/us_pep_sexrace/validation_config.json b/scripts/us_census/pep/us_pep_sexrace/validation_config.json new file mode 100644 index 0000000000..cd9c86f206 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sexrace/validation_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": "1.0", + "rules": [ + { + "rule_id": "check_deleted_records_percent", + "description": "Checks that the percentage of deleted records for the entire import is within threshold.", + "validator": "DELETED_RECORDS_PERCENT", + "params": { "threshold": 0.1} + }, + { + "rule_id": "check_goldens_national", + "description": "Validates national and state-level 2000+ data against its golden summary report.", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report_national_after.csv", + "input_files": "../../input0/genmcf/summary_report.csv" + } + }, + { + "rule_id": "check_goldens_before_2000", + "description": "Validates data before 2000 against its golden summary report.", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report_national_before.csv", + "input_files": "../../input1/genmcf/summary_report.csv" + } + }, + { + "rule_id": "check_goldens_after_2000", + "description": "Validates county-level 2000+ data against its golden summary report.", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report_state_after.csv", + "input_files": "../../input2/genmcf/summary_report.csv" + } + }, + { + "rule_id": "check_goldens_after_2000", + "description": "Validates county-level 2000+ data against its golden summary report.", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report_state_before.csv", + "input_files": "../../input3/genmcf/summary_report.csv" + } + } + ] +} From 2cdb80769d17c84f303baba8ad453a96e0f76de8 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Mon, 13 Jul 2026 17:04:45 +0000 Subject: [PATCH 7/7] added goldns --- .../golden_data/golden_summary_report.csv | 3420 +++++++++++++++++ .../population_estimates_by_asr/manifest.json | 1 + .../validation_config.json | 23 + 3 files changed, 3444 insertions(+) create mode 100644 scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_summary_report.csv create mode 100644 scripts/us_census/pep/population_estimates_by_asr/validation_config.json diff --git a/scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_summary_report.csv b/scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_summary_report.csv new file mode 100644 index 0000000000..aa5d0eaab8 --- /dev/null +++ b/scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_summary_report.csv @@ -0,0 +1,3420 @@ +"NumPlaces","observationPeriods","ScalingFactors","MeasurementMethods","StatVar","Units","MinDate" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75To79Years_Female","[]","1970" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_WhiteAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_81Years_Female_NonWhite","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_32Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_63Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60To64Years_Female","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_67Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_AsianOrPacificIslander","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15To19Years_Female","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_44Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_56Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_19Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_74Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_52Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_81Years_Female","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_66Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_82Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45Years_Female","[]","1900" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_85Years_Female","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Male_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_41Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_24Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_78Years_Female","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_89Years_Female","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_58Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_38Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_49Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_63Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_73Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_71Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40Years_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_37Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50Years_Male_NonWhite","[]","1900" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_22Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_19Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_16Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_23Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_44Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_77Years_Male","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_86Years_Male","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_78Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25To29Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75Years_NonWhite","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_13Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_27Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_16Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Female_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_92Years_Female","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_79Years_NonWhite","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_6Years_Male_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_12Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_34Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_8Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_96Years_Female","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_87Years_Male","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Male_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Male_WhiteAlone","[]","1970" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_59Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Female_AsianAlone","[]","2000" +"3193","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_24Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_4Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_38Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_17Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_12Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_WhiteAlone","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_AsianOrPacificIslander","[]","1980" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_BlackOrAfricanAmericanAlone","[]","1970" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_61Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_67Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_BlackOrAfricanAmericanAlone","[]","1960" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Male_WhiteAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10To14Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_36Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_77Years_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_68Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_3Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_24Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_27Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_26Years_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_WhiteAlone","[]","1940" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Female_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_64Years_Female_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_73Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_59Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Female_AsianOrPacificIslander","[]","1990" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_3Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_71Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0To4Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55To59Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_46Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_28Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Female_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_64Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_61Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70To74Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_52Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_24Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_32Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60To64Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50Years_Female_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_38Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65To69Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_69Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_4Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_94Years_Male","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_71Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_96Years_Male","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Male_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Female_AsianOrPacificIslander","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_36Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_78Years_Female_NonWhite","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_22Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_67Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Female_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_68Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_9Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50To54Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_95Years_Male","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_WhiteAlone","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20Years_NonWhite","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_34Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_WhiteAlone","[]","1940" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50To54Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_33Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_31Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_WhiteAlone","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_13Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_4Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_76Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_14Years_AsianAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80To84Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_67Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_BlackOrAfricanAmericanAlone","[]","1960" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_6Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_69Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_58Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_WhiteAlone","[]","1940" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_48Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Male_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45To49Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_84Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_47Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_28Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_66Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_14Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_8Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_63Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_17Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65Years_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_85OrMoreYears_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Female_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_62Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Male_TwoOrMoreRaces","[]","2000" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_32Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_49Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_78Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_81Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_51Years_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10Years_Female_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_9Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_89Years_Male","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_31Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30To34Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55To59Years_Male","[]","1970" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_29Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Female_AsianOrPacificIslander","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75Years_Male","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_11Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_22Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_48Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_21Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_61Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_WhiteAlone","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_WhiteAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_AsianOrPacificIslander","[]","1980" +"3143","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_51Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Male_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_41Years_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Male_AsianOrPacificIslander","[]","1990" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_33Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_8Years_Female_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_WhiteAlone","[]","1900" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_BlackOrAfricanAmericanAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_43Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_33Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Male_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50To54Years_Female","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Female_TwoOrMoreRaces","[]","2000" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Male_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_54Years_Male_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_AsianOrPacificIslander","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_29Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_6Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_85Years_Male","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_3Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_22Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_53Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_1Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_BlackOrAfricanAmericanAlone","[]","1960" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_BlackOrAfricanAmericanAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_47Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_32Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_WhiteAlone","[]","1900" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5To9Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_58Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_79Years_Male","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_31Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_38Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_3Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Female_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70To74Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_42Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_39Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_7Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_47Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_29Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_53Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_BlackOrAfricanAmericanAlone","[]","1960" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5To9Years_Female","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_83Years_Male","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_58Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_83Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_AsianOrPacificIslander","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Female_WhiteAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_7Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_BlackOrAfricanAmericanAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Female_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_WhiteAlone","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_62Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_67Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_47Years_Male","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_77Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_2Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_68Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_43Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_57Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_59Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_83Years_Female_NonWhite","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_58Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_38Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_13Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_73Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_51Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_59Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_56Years_Male","[]","1900" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_BlackOrAfricanAmericanAlone","[]","1970" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0To4Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Male_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_WhiteAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_AsianOrPacificIslander","[]","1980" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20To24Years_Male","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_71Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_57Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_34Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_83Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70Years_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_31Years_Male","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_76Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_62Years_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_43Years_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55Years_Male_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_34Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_41Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35To39Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_56Years_Male_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Female_WhiteAlone","[]","1970" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_AsianOrPacificIslander","[]","1980" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Female_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20To24Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_92Years_Male","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_BlackOrAfricanAmericanAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_WhiteAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_78Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_26Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_13Years_Female","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Female_AsianOrPacificIslander","[]","1990" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85OrMoreYears_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Female_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_9Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_56Years_Female_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_18Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_21Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Male_AsianAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_22Years_Male","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65To69Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15Years_AsianAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65To69Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_WhiteAlone","[]","1900" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_79Years_Female","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_48Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_37Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_66Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_77Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_73Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_WhiteAlone","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Male_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5To9Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_39Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_41Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_81Years_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_36Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Male_AsianAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Male_AsianAlone","[]","2000" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_BlackOrAfricanAmericanAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_16Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_64Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_46Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_77Years_Female_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_63Years_Female_NonWhite","[]","1900" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0To4Years_Male","[]","1970" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Female_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80To84Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45To49Years_AsianAlone","[]","2000" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_79Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Male_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_28Years_Male_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75To79Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_AsianOrPacificIslander","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_WhiteAlone","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_WhiteAlone","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_81Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70To74Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45To49Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_57Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_56Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_24Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_12Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_93Years_Male","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_49Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_AsianOrPacificIslander","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_56Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_72Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_53Years_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_85OrMoreYears_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_59Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Male_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_24Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_46Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_14Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_WhiteAlone","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_26Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_48Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_13Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_57Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_62Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_17Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_46Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_18Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Female_AsianAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5To9Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_AsianOrPacificIslander","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_AsianOrPacificIslander","[]","1990" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_37Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_14Years_Male","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_16Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_63Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_14Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_53Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_68Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_68Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_82Years_Female_NonWhite","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_6Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_BlackOrAfricanAmericanAlone","[]","1960" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_BlackOrAfricanAmericanAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_67Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_97Years_Male","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_84Years_Female_NonWhite","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_81Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_4Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_WhiteAlone","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_37Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_27Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_37Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_27Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Female_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_72Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_38Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_69Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_AsianOrPacificIslander","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_48Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Male_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_59Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_AsianOrPacificIslander","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_26Years_Male_NonWhite","[]","1900" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_AmericanIndianAndAlaskaNativeAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_34Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_BlackOrAfricanAmericanAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_WhiteAlone","[]","1900" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_AsianOrPacificIslander","[]","1980" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_69Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_76Years_Male","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_69Years_Female_NonWhite","[]","1900" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65To69Years_Female","[]","1970" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70To74Years_Female","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_18Years_Male","[]","1900" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_72Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_AsianOrPacificIslander","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20To24Years_Female","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_57Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_1Years_Female","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50Years_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_74Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_88Years_Male","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Female_WhiteAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_59Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80Years_Female_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_72Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_23Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_54Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_36Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_72Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_1Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35To39Years_Male","[]","1970" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_24Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_17Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_28Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_59Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_WhiteAlone","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_14Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_67Years_Female_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15To19Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80Years_NonWhite","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_51Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_47Years_Male_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_27Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_76Years_Female_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Female_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60To64Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_26Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_74Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80Years_Male","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50To54Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_64Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_WhiteAlone","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_58Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_WhiteAlone","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_75OrMoreYears_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_41Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_2Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_47Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_38Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_37Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_26Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_98Years_Female","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_95Years_Female","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_84Years_Male","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_16Years_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_100Years_Male","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_84Years_Female","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_9Years_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_85OrMoreYears_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75Years_Female_NonWhite","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_68Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_74Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_BlackOrAfricanAmericanAlone","[]","1960" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_73Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10To14Years_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_63Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_BlackOrAfricanAmericanAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_54Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_61Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_8Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_64Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_21Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_7Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_BlackOrAfricanAmericanAlone","[]","1960" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45To49Years_Female","[]","1970" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_AsianOrPacificIslander","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30To34Years_Female","[]","1970" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_69Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_58Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_AsianOrPacificIslander","[]","1980" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_57Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_72Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_WhiteAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_76Years_Female","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_54Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_61Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60To64Years_Male","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_23Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_39Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_48Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_83Years_Female","[]","1940" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_82Years_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_87Years_Female","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_43Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_23Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_36Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_47Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_67Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_28Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_79Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Female_WhiteAlone","[]","1970" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_46Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_27Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_52Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_31Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_17Years_Male","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40To44Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_34Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55To59Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_WhiteAlone","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_21Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_74Years_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_WhiteAlone","[]","1940" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80To84Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_42Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_BlackOrAfricanAmericanAlone","[]","1960" +"3193","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_76Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Female_AsianAlone","[]","2000" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_6Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_38Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_76Years_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Male_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_19Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_78Years_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_BlackOrAfricanAmericanAlone","[]","1970" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75To79Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Male_WhiteAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_19Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_17Years_Female_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_34Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_62Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_62Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_39Years_Male_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_36Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_23Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_4Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_9Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65Years_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_18Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_21Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_28Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_71Years_Male","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_44Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_51Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10To14Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_AsianOrPacificIslander","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75To79Years_Male","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_61Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_37Years_Female_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30To34Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_79Years_Female_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_56Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_46Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_WhiteAlone","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_46Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_71Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85OrMoreYears_Female_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_21Years_Female","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_51Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_16Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_29Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_18Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_WhiteAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_8Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_WhiteAlone","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_32Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_94Years_Female","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_84Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_2Years_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_43Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Male_AsianOrPacificIslander","[]","1990" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_BlackOrAfricanAmericanAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_7Years_Female","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25To29Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5Years_Male_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75To79Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_9Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_4Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25To29Years_Male","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_6Years_NonWhite","[]","1900" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_WhiteAlone","[]","1900" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_42Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_4Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_WhiteAlone","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_9Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_AsianOrPacificIslander","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Male_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_BlackOrAfricanAmericanAlone","[]","1960" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_WhiteAlone","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_54Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_11Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_11Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_31Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_81Years_Male","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_42Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3195","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0Years_Female","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_WhiteAlone","[]","1900" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_22Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_WhiteAlone","[]","1980" +"3143","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_WhiteAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_29Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_AsianOrPacificIslander","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_WhiteAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_85OrMoreYears_Male","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_42Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_AsianOrPacificIslander","[]","1990" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_53Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_14Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_66Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_66Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_23Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_6Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_9Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50Years_Male","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_52Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Female_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_68Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_33Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_84Years_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10To14Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_51Years_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_WhiteAlone","[]","1900" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_19Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5To9Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_BlackOrAfricanAmericanAlone","[]","1960" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_7Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_2Years_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_AsianOrPacificIslander","[]","1980" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_33Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_62Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_31Years_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_18Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_49Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15To19Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_11Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_48Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_6Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_WhiteAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50To54Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_64Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_72Years_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_49Years_TwoOrMoreRaces","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40To44Years_Female","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_18Years_Male_NonWhite","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_13Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_76Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_69Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Male_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_82Years_NonWhite","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35To39Years_Female","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_44Years_Male_NonWhite","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Female_AsianOrPacificIslander","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_11Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_13Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_39Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_3Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_19Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_12Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_54Years_Female_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_29Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_32Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_90Years_Female","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_21Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_78Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_3Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_7Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_73Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Female_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_12Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70To74Years_Male","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_49Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3143","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_1To4Years_Male","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_27Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_2Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_77Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_66Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_64Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_61Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_8Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_99Years_Male","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_71Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_77Years_Female","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55Years_Female","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75Years_Female","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_53Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Male_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_TwoOrMoreRaces","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_42Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_AsianOrPacificIslander","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_4Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_81Years_Male_NonWhite","[]","1940" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_82Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_29Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Male_AsianAlone","[]","2000" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Female_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30To34Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_46Years_Female_NonWhite","[]","1900" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_52Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_58Years_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_49Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_32Years_Female_NonWhite","[]","1900" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_52Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_52Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_22Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_WhiteAlone","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_19Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_17Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_91Years_Male","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_93Years_Female","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20To24Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0Years_Male_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_47Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_97Years_Female","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_74Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_33Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_8Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_82Years_Female","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_44Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_86Years_Female","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_74Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_75OrMoreYears_Female","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_WhiteAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20To24Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5Years_Female_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85OrMoreYears_NonWhite","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0To4Years_Female","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_39Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_TwoOrMoreRaces","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_82Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3193","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_AsianOrPacificIslander","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_44Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_2Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_11Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_54Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_79Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Female_TwoOrMoreRaces","[]","2000" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_2Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_22Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_69Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_7Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_44Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_WhiteAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_21Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_WhiteAlone","[]","1940" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25To29Years_Female","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15To19Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_66Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_73Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_12Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Male_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_98Years_Male","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25To29Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_83Years_NonWhite","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_37Years_Male","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_16Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_41Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_42Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_16Years_Female_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_41Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_44Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_91Years_Female","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55To59Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_36Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_99Years_Female","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40To44Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Male_WhiteAlone","[]","1970" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_66Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_WhiteAlone","[]","1900" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55To59Years_Female","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80Years_Female","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_WhiteAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_1Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_29Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_88Years_Female","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_85OrMoreYears_Female","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_77Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30To34Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_71Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_68Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_3Years_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35To39Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80Years_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_43Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_74Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_WhiteAlone","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_49Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_41Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60To64Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_AsianOrPacificIslander","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Male_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_WhiteAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_WhiteAlone","[]","1970" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_36Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_8Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_2Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_WhiteAlone","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_17Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35To39Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_63Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45To49Years_Male","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_7Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65To69Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_12Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_79Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_52Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_24Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_11Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Male_WhiteAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_18Years_Female_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_13Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_34Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_32Years_Male","[]","1900" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_WhiteAlone","[]","1970" +"3143","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_WhiteAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_84Years_NonWhite","[]","1940" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Male_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Female_TwoOrMoreRaces","[]","2000" +"3143","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_3Years_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_57Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15To19Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_26Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_AsianOrPacificIslander","[]","1980" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_54Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Female_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_AsianAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40To44Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_WhiteAlone","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_64Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_31Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_90Years_Male","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_63Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Male_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Male_WhiteAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_83Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_1Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_27Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_53Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_53Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_42Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_39Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_100Years_Female","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_72Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_WhiteAlone","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_62Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3143","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_1To4Years_Female","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Male_AsianAlone","[]","2000" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_BlackOrAfricanAmericanAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Female_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_43Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40Years_Male_NonWhite","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Female_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_57Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_61Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_73Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_WhiteAlone","[]","1900" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0To4Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40To44Years_AsianAlone","[]","2000" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_51Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_78Years_Male","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_43Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_33Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80To84Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_33Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_56Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_14Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_84Years_Male_NonWhite","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_28Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_83Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_11Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_23Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_12Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Female_TwoOrMoreRaces","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80To84Years_Female","[]","1970" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_WhiteAlone","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3195","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Male_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_23Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Female_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_AsianOrPacificIslander","[]","1990" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10To14Years_Female","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_82Years_Male","[]","1940" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_19Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_28Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_39Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Male_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_26Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_48Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1Years_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Female_TwoOrMoreRaces","[]","2000" diff --git a/scripts/us_census/pep/population_estimates_by_asr/manifest.json b/scripts/us_census/pep/population_estimates_by_asr/manifest.json index 65933949af..45102b1b85 100644 --- a/scripts/us_census/pep/population_estimates_by_asr/manifest.json +++ b/scripts/us_census/pep/population_estimates_by_asr/manifest.json @@ -20,6 +20,7 @@ "input_files/*" ], "cron_schedule": "0 05 * * 1", + "validation_config_file": "validation_config.json", "resource_limits": { "cpu": 16, "memory": 256, diff --git a/scripts/us_census/pep/population_estimates_by_asr/validation_config.json b/scripts/us_census/pep/population_estimates_by_asr/validation_config.json new file mode 100644 index 0000000000..8741a1f351 --- /dev/null +++ b/scripts/us_census/pep/population_estimates_by_asr/validation_config.json @@ -0,0 +1,23 @@ +{ + "schema_version": "1.0", + "rules": [ + { + "rule_id": "check_deleted_records_percent", + "description": "Checks that the percentage of deleted points is within the threshold.", + "validator": "DELETED_RECORDS_PERCENT", + "params": { + "threshold": 0.1 + } + }, + { + "rule_id": "check_goldens_summary_report", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report.csv" + } + } + ] +} + + +